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/grouping-modal/grouping-modal.service.html

46 lines
1.3 KiB

<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_group_by') }}</h3>
<form>
<div class="form--field -full-width">
<label
for="selected_columns_new"
class="form--label hidden-for-sighted">
{{ ::I18n.t('js.label_group_by') }}
</label>
<div class="form--field-container">
<div class="form--select-container">
<select
ng-model="vm.selectedColumnName"
focus="true"
title="{{ fieldController.editTitle }}"
id="selected_columns_new"
class="form--select"
ng-options="column.name as column.title for column in vm.getGroupableColumns() | orderBy: 'title'">
</select>
</div>
</div>
</div>
<div>
<button class="button -highlight" ng-click="updateGroupBy()">
{{ ::I18n.t('js.modals.button_apply') }}
</button>
<button class="button" ng-click="$ctrl.closeMe()">
{{ ::I18n.t('js.modals.button_cancel') }}
</button>
</div>
</form>
</div>
</div>