2014-05-27 18:18:57 +00:00
|
|
|
<!-- New Template Modal -->
|
|
|
|
<div class="modal-header">
|
2014-05-28 23:48:30 +00:00
|
|
|
<button type="button" class="close" ng-click="cancel()">×</button>
|
2014-05-27 18:18:57 +00:00
|
|
|
<h4 class="modal-title" ng-hide="newTemplate" id="groupModalLabel">Edit Template: {{template.name}}</h4>
|
|
|
|
<h4 class="modal-title" ng-show="newTemplate" id="groupModalLabel">New Template</h4>
|
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
2015-02-18 02:49:09 +00:00
|
|
|
<div class="row">
|
|
|
|
<div ng-repeat="flash in flashes.modal" style="text-align:center" class="alert alert-{{flash.type}}">
|
|
|
|
<i class="fa {{flash.icon}}"></i> {{flash.message}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-05-27 18:18:57 +00:00
|
|
|
<label class="control-label" for="name">Name:</label>
|
|
|
|
<div class="form-group">
|
|
|
|
<input type="text" class="form-control" ng-model="template.name" placeholder="Template name" id="name" autofocus/>
|
|
|
|
</div>
|
2015-02-16 03:53:30 +00:00
|
|
|
<div class="form-group">
|
|
|
|
<button class="btn btn-danger btn-disabled" ng-click="importEmail()"><i class="fa fa-envelope"></i> Import Email (Coming Soon!)</button>
|
|
|
|
</div>
|
2015-02-13 04:21:50 +00:00
|
|
|
<label class="control-label" for="subject">Subject:</label>
|
|
|
|
<div class="form-group">
|
|
|
|
<input type="text" class="form-control" ng-model="template.subject" placeholder="Email Subject" id="subject" />
|
|
|
|
</div>
|
2014-05-27 18:18:57 +00:00
|
|
|
<!-- Nav tabs -->
|
|
|
|
<tabset>
|
|
|
|
<tab heading="Text">
|
|
|
|
<textarea rows="10" class="form-control" ng-model="template.text" placeholder="Plaintext"></textarea>
|
|
|
|
</tab>
|
|
|
|
<tab heading="HTML">
|
2015-02-13 04:21:50 +00:00
|
|
|
<textarea ckeditor="editorOptions" ng-model="template.html"></textarea>
|
2014-05-27 18:18:57 +00:00
|
|
|
</tab>
|
|
|
|
</tabset>
|
2014-07-12 18:46:38 +00:00
|
|
|
<br />
|
2015-06-25 07:53:03 +00:00
|
|
|
<label class="control-label">Files:</label>
|
2014-07-24 02:04:38 +00:00
|
|
|
<div ng-repeat="file in template.attachments" ng-model="template.attachments">
|
2014-07-12 18:46:38 +00:00
|
|
|
<i class="fa fa-file-excel-o" ng-show="file.type == 'application/vnd.ms-excel'"></i>
|
|
|
|
<i class="fa fa-file-text-o" ng-show="file.type == 'text/plain'"></i>
|
|
|
|
<i class="fa fa-file-image-o" ng-show="file.type == 'image/gif'"></i>
|
2014-07-24 02:04:38 +00:00
|
|
|
<i class="fa fa-file-pdf-o" ng-show="file.type == 'application/pdf'"></i>
|
|
|
|
<i class="fa fa-file-archive-o" ng-show="file.type == 'application/x-zip-compressed' || file.type == 'application/x-gzip'"></i>
|
|
|
|
<i class="fa fa-file-powerpoint-o" ng-show="file.type == 'application/vnd.openxmlformats-officedocument.presentationml.presentation'"></i>
|
|
|
|
<i class="fa fa-file-word-o" ng-show="file.type == 'application/vnd.openxmlformats-officedocument.wordprocessingml.document'"></i>
|
|
|
|
<i class="fa fa-file-o" ng-show="file.type == 'application/octet-stream' || file.type == 'application/x-msdownload'"></i>
|
2014-07-12 18:46:38 +00:00
|
|
|
{{file.name}}
|
2014-07-24 02:04:38 +00:00
|
|
|
<span ng-click="removeFile(file)" class="remove-row"><i class="fa fa-trash-o"></i>
|
|
|
|
</span>
|
2014-07-12 18:46:38 +00:00
|
|
|
</div>
|
2014-07-24 02:04:38 +00:00
|
|
|
<br/>
|
|
|
|
<span class="btn btn-danger btn-file"><i class="fa fa-plus"></i> Add Files
|
2015-06-25 07:53:03 +00:00
|
|
|
<input type="file" onchange="attach(this.files)" multiple>
|
2014-07-24 02:04:38 +00:00
|
|
|
</span>
|
2014-05-27 18:18:57 +00:00
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
2014-05-28 23:48:30 +00:00
|
|
|
<button type="button" class="btn btn-default" ng-click="cancel()">Cancel</button>
|
2014-06-26 02:01:01 +00:00
|
|
|
<button type="button" class="btn btn-primary" ng-click="ok(template)" data-dismiss="modal">Save Template</button>
|
2014-05-27 18:18:57 +00:00
|
|
|
</div>
|