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.
39 lines
1.2 KiB
39 lines
1.2 KiB
11 years ago
|
<div class="ng-modal-window">
|
||
|
<div class="ng-modal-inner">
|
||
11 years ago
|
<div class="modal-header"><i class="icon-close" ng-click="modal.closeMe()"></i></div>
|
||
11 years ago
|
|
||
10 years ago
|
<h3>{{ I18n.t('js.label_share') }}</h3>
|
||
11 years ago
|
|
||
11 years ago
|
<div>
|
||
|
<label class="checkbox-label">
|
||
11 years ago
|
<input type="checkbox"
|
||
|
name="is_public"
|
||
|
ng-model="query.isPublic"
|
||
10 years ago
|
ng-disabled="cannot('query', 'publicize') && cannot('query', 'depublicize')"
|
||
11 years ago
|
focus></input>
|
||
11 years ago
|
<div class="styled-checkbox"></div>
|
||
10 years ago
|
{{ I18n.t('js.label_visible_for_others') }}
|
||
11 years ago
|
</label>
|
||
|
</div>
|
||
|
<div>
|
||
|
<label class="checkbox-label">
|
||
11 years ago
|
<input type="checkbox"
|
||
|
name="show_in_menu"
|
||
|
ng-model="shareSettings.starred"
|
||
10 years ago
|
ng-disabled="query.isGlobal() || cannot('query', 'star')"></input>
|
||
11 years ago
|
<div class="styled-checkbox"></div>
|
||
10 years ago
|
{{ I18n.t('js.label_show_in_menu') }}
|
||
11 years ago
|
</label>
|
||
|
</div>
|
||
11 years ago
|
<div>
|
||
10 years ago
|
<button class="button -highlight" ng-click="saveQuery()">
|
||
10 years ago
|
{{ I18n.t('js.modals.button_save') }}
|
||
|
</button>
|
||
|
<button class="button" ng-click="modal.closeMe()">
|
||
|
{{ I18n.t('js.modals.button_cancel') }}
|
||
|
</button>
|
||
11 years ago
|
</div>
|
||
|
|
||
11 years ago
|
</div>
|
||
|
</div>
|