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.
45 lines
2.0 KiB
45 lines
2.0 KiB
11 years ago
|
<div class="tl-toolbar" ng-show="!warning">
|
||
11 years ago
|
<div class="tl-toolbar-container">
|
||
11 years ago
|
<a href="javascript://" ng-if='timeline.USE_MODALS' ng-click="timeline.addPlanningElement()" title="{{I18n.t('js.timelines.new_work_package')}}" class="icon icon-add">
|
||
11 years ago
|
<span class="hidden-for-sighted">{{ I18n.t('js.timelines.new_work_package') }}</span>
|
||
|
</a>
|
||
11 years ago
|
</div>
|
||
|
|
||
|
<div class="tl-toolbar-container" style="width: 1px; height: 20px; background-color: rgb(0, 0, 0);"></div>
|
||
|
|
||
|
<div class="tl-toolbar-container">
|
||
10 years ago
|
<a href="javascript://" title="{{ I18n.t('js.timelines.zoom.out') }}" class="icon icon-zoom-out" ng-click="decreaseZoom()"></a>
|
||
11 years ago
|
</div>
|
||
|
|
||
|
<div class="tl-toolbar-container" style="width: 100px; height: 20px;">
|
||
|
<div id="zoom-slider" zoom-slider></div>
|
||
|
</div>
|
||
|
|
||
|
<div class="tl-toolbar-container">
|
||
10 years ago
|
<a href="javascript://" title="{{ I18n.t('js.timelines.zoom.in') }}" class="icon icon-zoom-in" ng-click="increaseZoom()"></a>
|
||
11 years ago
|
</div>
|
||
|
|
||
|
|
||
|
<div class="tl-toolbar-container">
|
||
|
<form>
|
||
11 years ago
|
<label for="tl-toolbar-zooms" class="hidden-for-sighted">{{ I18n.t('js.tl_toolbar.zooms') }}</label>
|
||
11 years ago
|
<select id="tl-toolbar-zooms" name="zooms" ng-model="currentScaleName" ng-options="I18n.t('js.' + timeline.ZOOM_CONFIGURATIONS[scale].name) for scale in timeline.ZOOM_SCALES">
|
||
11 years ago
|
</select>
|
||
|
</form>
|
||
|
</div>
|
||
|
|
||
|
<div class="tl-toolbar-container" style="width: 1px; height: 20px; background-color: rgb(0, 0, 0);"></div>
|
||
|
|
||
|
<div class="tl-toolbar-container">
|
||
10 years ago
|
<a href="javascript://" title="{{ I18n.t('js.timelines.outline') }}" class="icon icon-outline" ng-click="resetOutline()"></a>
|
||
11 years ago
|
</div>
|
||
|
|
||
|
<div class="tl-toolbar-container">
|
||
|
<form>
|
||
11 years ago
|
<label for="tl-toolbar-outlines" class="hidden-for-sighted">{{ I18n.t('js.tl_toolbar.outlines') }}</label>
|
||
11 years ago
|
<select id="tl-toolbar-outlines" name="outlines" ng-model="currentOutlineLevel" ng-options="I18n.t('js.' + timeline.OUTLINE_CONFIGURATIONS[level].name) for level in timeline.OUTLINE_LEVELS">
|
||
11 years ago
|
</select>
|
||
|
</form>
|
||
11 years ago
|
</div>
|
||
|
</div>
|