2015-06-15 21:49:16 +00:00
{{define "body"}}
< div class = "container-fluid" >
< div class = "row" >
< div class = "col-sm-3 col-md-2 sidebar" >
< ul class = "nav nav-sidebar" >
< li > < a href = "#" > Dashboard< / a >
< / li >
2015-06-17 04:09:27 +00:00
< li > < a href = "/campaigns" > Campaigns< / a >
2015-06-15 21:49:16 +00:00
< / li >
2015-06-17 04:09:27 +00:00
< li > < a href = "/users" > Users & Groups< / a >
2015-06-15 21:49:16 +00:00
< / li >
< li class = "active" > < a href = "#/templates" > Email Templates< / a >
< / li >
2015-06-17 04:09:27 +00:00
< li > < a href = "/landing_pages" > Landing Pages< / a >
2015-06-15 21:49:16 +00:00
< / li >
2015-06-17 04:09:27 +00:00
< li > < a href = "/settings" > Settings< / a >
2015-06-15 21:49:16 +00:00
< / li >
< li > < a href = "/api/" > API Documentation< / a >
< / li >
< / ul >
< / div >
< / div >
< / div >
2015-06-24 04:02:29 +00:00
< div class = "col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main" >
< div class = "row" >
< h1 class = "page-header" >
Email Templates
< / h1 >
< / div >
2015-06-21 21:10:47 +00:00
< div id = "flashes" class = "row" > < / div >
2015-06-15 21:49:16 +00:00
< div class = "row" >
2015-06-24 04:02:29 +00:00
< button type = "button" class = "btn btn-primary" onclick = "edit('new')" data-toggle = "modal" data-target = "#modal" > < i class = "fa fa-plus" > < / i > New Template< / button >
2015-06-15 21:49:16 +00:00
< / div >
2015-06-21 21:10:47 +00:00
< div id = "emptyMessage" class = "row" >
< div class = "alert alert-info" >
No templates created yet. Let's create one!
2015-06-15 21:49:16 +00:00
< / div >
< / div >
2015-06-24 04:02:29 +00:00
< div class = "row" >
< table id = "templateTable" class = "table" style = "display:none;" >
< thead >
< tr >
< th > Name< / th >
< th > Modified Date< / th >
< / tr >
< / thead >
< tbody >
< / tbody >
< / table >
< / div >
2015-06-21 21:10:47 +00:00
<!-- <div ng - show="templates.length" class="row">
2015-06-15 21:49:16 +00:00
< table ng-table = "mainTableParams" class = "table table-hover table-striped table-bordered" >
< tbody >
< tr ng-repeat = "template in $data | orderBy: '-modified_date'" class = "editable-row" >
2015-06-21 21:10:47 +00:00
< td data-title = "'Name'" sortable = "'name'" class = "col-sm-2" > template.name
2015-06-15 21:49:16 +00:00
< div class = "btn-group" style = "float: right;" >
< button type = "button" class = "btn btn-primary dropdown-toggle edit-button" data-toggle = "dropdown" >
< span class = "caret" style = "border-top-color:#FFFFFF" > < / span >
< span class = "sr-only" > Toggle Dropdown< / span >
< / button >
< ul class = "dropdown-menu" style = "left:auto; right:0;" role = "menu" >
< li > < a ng-click = "editTemplate(template)" > Edit< / a >
< / li >
< li class = "divider" > < / li >
< li > < a ng-click = "deleteTemplate(template)" > Delete< / a >
< / li >
< / ul >
< / div >
< / td >
2015-06-21 21:10:47 +00:00
< td data-title = "'Modified Date'" class = "col-sm-1" > template.modified_date | date:'medium'< / td >
2015-06-15 21:49:16 +00:00
< / tr >
< / tbody >
< / table >
2015-06-21 21:10:47 +00:00
< / div > -->
2015-06-15 21:49:16 +00:00
< / div >
2015-06-24 04:02:29 +00:00
<!-- Modal -->
< div class = "modal fade" id = "modal" tabindex = "-1" role = "dialog" aria-labelledby = "modalLabel" >
< div class = "modal-dialog" role = "document" >
< div class = "modal-content" >
<!-- New Template Modal -->
< div class = "modal-header" >
< button type = "button" class = "close" data-dismiss = "modal" aria-label = "Close" > < span aria-hidden = "true" > × < / span > < / button >
< h4 class = "modal-title" id = "templateModalLabel" > New Template< / h4 >
< / div >
< div class = "modal-body" >
< div class = "row" id = "modal.flashes" > < / div >
< 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 >
< 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 >
< 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 >
<!-- Nav tabs -->
< ul class = "nav nav-tabs" role = "tablist" >
2015-06-25 07:53:03 +00:00
< li class = "active" role = "text" > < a href = "#text" aria-controls = "text" role = "tab" data-toggle = "tab" > Text< / a > < / li >
2015-06-24 04:02:29 +00:00
< li role = "html" > < a href = "#html" aria-controls = "html" role = "tab" data-toggle = "tab" > HTML< / a > < / li >
< / ul >
<!-- Tab panes -->
< div class = "tab-content" >
< div role = "tabpanel" class = "tab-pane active" id = "text" >
< textarea rows = "10" class = "form-control" placeholder = "Plaintext" > < / textarea >
< / div >
< div role = "tabpanel" class = "tab-pane" id = "html" >
< textarea id = "html_editor" > < / textarea >
< / div >
< / div >
< 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 >
2015-06-24 04:02:29 +00:00
< / span >
2015-06-28 00:21:46 +00:00
< br / >
< br / >
< table id = "attachmentsTable" class = "table" >
< thead >
< tr >
< th class = "col-md-1" > < / th >
< th class = "col-md-10" > Name< / th >
< th class = "col-md-1" > < / th >
< / tr >
< / thead >
< tbody >
< / tbody >
< / table >
2015-06-24 04:02:29 +00:00
< / div >
< div class = "modal-footer" >
2015-06-25 07:53:03 +00:00
< button type = "button" class = "btn btn-default" onclick = "dismiss()" > Cancel< / button >
2015-06-24 04:02:29 +00:00
< button type = "button" class = "btn btn-primary" onclick = "save()" data-dismiss = "modal" > Save Template< / button >
< / div >
< / div >
< / div >
2015-06-15 21:49:16 +00:00
{{end}}
2015-06-21 21:10:47 +00:00
{{define "scripts"}}
2015-06-24 04:02:29 +00:00
< script src = "/js/app/templates.js" > < / script >
2015-06-21 21:10:47 +00:00
{{end}}