OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/frontend/app/templates/work_packages/modals/export.html

17 lines
575 B

<div class="ng-modal-window">
<div class="ng-modal-inner">
<div class="modal-header"><i class="icon-close" ng-click="modal.closeMe()" title="{{ ::I18n.t('js.close_popup_title') }}"></i></div>
<h3>{{ ::I18n.t('js.label_export') }}</h3>
<ul class="export-options">
<li ng-repeat="option in modal.exportOptions">
<a ng-href="{{ ::option.url }}" focus="$first">
<i class="icon-page-{{ ::option.identifier }} icon-big"></i>
<span class="export-label">{{ ::option.label }}</span>
</a>
</li>
</ul>
</div>
</div>