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.
29 lines
1.0 KiB
29 lines
1.0 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
|
|
||
11 years ago
|
<h3>{{ I18n.t('js.modals.label_settings') }}</h3>
|
||
|
|
||
10 years ago
|
<form name="modalSettingsForm" class="form">
|
||
|
<div class="form--field -required">
|
||
10 years ago
|
<label class="form--label" for="query_name">
|
||
11 years ago
|
{{ I18n.t('js.modals.label_name') }}
|
||
|
</label>
|
||
10 years ago
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<input class="form--text-field" type="text" name="query_name"
|
||
10 years ago
|
ng-model="queryName" focus required id="query_name"></input>
|
||
10 years ago
|
</div>
|
||
|
</div>
|
||
11 years ago
|
</div>
|
||
10 years ago
|
<div class="form--space">
|
||
10 years ago
|
<button class="button -highlight"
|
||
11 years ago
|
ng-click="updateQuery()"
|
||
11 years ago
|
ng-disabled="modalSettingsForm.$invalid">{{ I18n.t('js.modals.button_submit') }}</button>
|
||
|
<button class="button" ng-click="modal.closeMe()">{{ I18n.t('js.modals.button_cancel') }}</button>
|
||
|
</div>
|
||
|
</form>
|
||
11 years ago
|
|
||
|
</div>
|
||
|
</div>
|