heat-dashboard/heat_dashboard/static/dashboard/project/heat_dashboard/template_generator/templates/modal_template.html

40 lines
1.6 KiB
HTML

<md-dialog aria-label="Template">
<form>
<md-toolbar>
<div class="md-toolbar-tools">
<h2 class="md-title">{$ 'Heat Orchestration Template' | translate $}</h2>
<span flex></span>
<md-button class="md-icon-button" ng-click="cancel()" aria-label="cancel">
<i class="fa fa-times"></i>
</md-button>
</div>
</md-toolbar>
<md-dialog-content>
<md-content layout-gt-sm="row" layout-padding>
<section>
<md-subheader ng-if="all_saved == false" class="md-warn">{$ warning | translate $}</md-subheader>
<md-input-container class="md-block">
<label>{$ template.title $}</label>
<textarea ng-model="template.content" md-maxlength="65530" rows="35" cols="150" md-select-on-focus>
</textarea>
</md-input-container>
</section>
</md-content>
</md-dialog-content>
<md-dialog-actions layout="row">
<span flex></span>
<md-button ng-click="cancel()" >
{$ 'Cancel' | translate $}
</md-button>
<md-button ng-click="download()" class="md-raised md-accent" ng-disabled="all_saved == false" >
{$ 'Download' | translate $}
</md-button>
<md-button ng-click="save()" class="md-raised md-primary" style="margin-right:20px;" ng-disabled="all_saved == false" >
{$ 'Create Stack' | translate $}
</md-button>
</md-dialog-actions>
</form>
</md-dialog>