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/components/modals/export-modal/export-modal.service.html

24 lines
695 B

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