kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
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.
55 lines
1.9 KiB
55 lines
1.9 KiB
11 years ago
|
<div id="column-context-menu"
|
||
|
class="action-menu dropdown-relative"
|
||
|
ng-class="{'dropdown-anchor-right': column && column.name !== 'id'}">
|
||
11 years ago
|
<ul class="menu">
|
||
10 years ago
|
<li ng-if="canSort()" ng-click="sortAscending(column.name)">
|
||
|
<a focus href="">
|
||
11 years ago
|
<i class="icon-action-menu icon-sort-ascending"></i>
|
||
11 years ago
|
<span ng-bind="I18n.t('js.work_packages.query.sort_ascending')"/>
|
||
11 years ago
|
</a>
|
||
11 years ago
|
</li>
|
||
|
|
||
10 years ago
|
<li ng-if="canSort()" ng-click="sortDescending(column.name)">
|
||
|
<a href="">
|
||
10 years ago
|
<i class="icon-action-menu icon-sort-descending"></i>
|
||
11 years ago
|
<span ng-bind="I18n.t('js.work_packages.query.sort_descending')"/>
|
||
|
</a>
|
||
11 years ago
|
</li>
|
||
11 years ago
|
|
||
10 years ago
|
<li ng-if="isGroupable" ng-click="groupBy(column.name)">
|
||
|
<a focus="focusFeature('group')" href="">
|
||
10 years ago
|
<i class="icon-action-menu icon-group-by2"></i>
|
||
11 years ago
|
<span ng-bind="I18n.t('js.work_packages.query.group')"/>
|
||
|
</a>
|
||
|
</li>
|
||
|
|
||
10 years ago
|
<li ng-if="canMoveLeft()" ng-click="moveLeft(column.name)">
|
||
|
<a focus="focusFeature('moveLeft')" href="">
|
||
10 years ago
|
<i class="icon-action-menu icon-column-left"></i>
|
||
11 years ago
|
<span ng-bind="I18n.t('js.work_packages.query.move_column_left')"/>
|
||
|
</a>
|
||
11 years ago
|
</li>
|
||
|
|
||
10 years ago
|
<li ng-if="canMoveRight()" ng-click="moveRight(column.name)">
|
||
|
<a focus="focusFeature('moveRight')" href="">
|
||
10 years ago
|
<i class="icon-action-menu icon-column-right"></i>
|
||
11 years ago
|
<span ng-bind="I18n.t('js.work_packages.query.move_column_right')"/>
|
||
|
</a>
|
||
11 years ago
|
</li>
|
||
|
|
||
10 years ago
|
<li ng-if="canBeHidden()" ng-click="hideColumn(column.name)">
|
||
|
<a focus="focusFeature('hide')" href="">
|
||
10 years ago
|
<i class="icon-action-menu icon-delete2"></i>
|
||
11 years ago
|
<span ng-bind="I18n.t('js.work_packages.query.hide_column')"/>
|
||
|
</a>
|
||
11 years ago
|
</li>
|
||
|
|
||
10 years ago
|
<li ng-click="insertColumns()">
|
||
|
<a focus="focusFeature('insert')" href="">
|
||
10 years ago
|
<i class="icon-action-menu icon-columns"></i>
|
||
11 years ago
|
<span ng-bind="I18n.t('js.work_packages.query.insert_columns')"/>
|
||
|
</a>
|
||
|
</li>
|
||
11 years ago
|
</ul>
|
||
|
</div>
|