2014-04-20 14:35:59 +00:00
|
|
|
package templates
|
|
|
|
|
|
|
|
func Index() string {
|
|
|
|
return `
|
|
|
|
<style>
|
|
|
|
.messages {
|
|
|
|
height: 30%;
|
2014-04-20 15:05:50 +00:00
|
|
|
overflow-y: scroll;
|
2014-04-20 14:35:59 +00:00
|
|
|
}
|
|
|
|
.preview {
|
|
|
|
height: 70%;
|
|
|
|
border-top: 1px solid #CCCCCC;
|
|
|
|
}
|
|
|
|
.preview #headers {
|
|
|
|
border-bottom: 1px solid #DDDDDD;
|
|
|
|
}
|
|
|
|
.selected {
|
|
|
|
background: #DADAFA;
|
|
|
|
}
|
|
|
|
table tbody {
|
|
|
|
overflow: scroll;
|
|
|
|
}
|
2014-04-20 19:03:53 +00:00
|
|
|
table td, table th {
|
2014-04-20 14:35:59 +00:00
|
|
|
padding: 2px 4px 2px 4px !important;
|
|
|
|
}
|
2014-04-20 19:13:39 +00:00
|
|
|
table#headers {
|
|
|
|
margin-bottom: 2px;
|
|
|
|
}
|
|
|
|
#content .nav>li>a {
|
|
|
|
padding: 5px 8px;
|
|
|
|
}
|
|
|
|
#content {
|
|
|
|
padding: 0px 2px;
|
|
|
|
}
|
2014-04-20 14:35:59 +00:00
|
|
|
</style>
|
|
|
|
<div class="modal fade" id="confirm-delete-all">
|
|
|
|
<div class="modal-dialog">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|
|
|
<h4 class="modal-title">Delete all messages?</h4>
|
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
|
|
<p>Are you sure you want to delete all messages?</p>
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
|
|
|
|
<button type="button" class="btn btn-danger" ng-click="deleteAllConfirm()">Delete all messages</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="messages">
|
|
|
|
<table class="table">
|
|
|
|
<tr>
|
|
|
|
<th>From</th>
|
|
|
|
<th>To</th>
|
|
|
|
<th>Subject</th>
|
|
|
|
<th>Received</th>
|
|
|
|
<th>Actions</th>
|
|
|
|
</tr>
|
|
|
|
<tbody>
|
2014-04-22 19:39:54 +00:00
|
|
|
<tr ng-repeat="message in messages" ng-click="selectMessage(message)" ng-class="{ selected: message.Id == preview.Id }">
|
2014-04-20 14:35:59 +00:00
|
|
|
<td>
|
2014-04-20 15:05:50 +00:00
|
|
|
{{ message.From.Mailbox }}@{{ message.From.Domain }}
|
2014-04-20 14:35:59 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2014-04-20 15:05:50 +00:00
|
|
|
<span ng-repeat="to in message.To">
|
|
|
|
{{ to.Mailbox }}@{{ to.Domain }}
|
2014-04-20 14:35:59 +00:00
|
|
|
</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
2014-04-20 19:17:48 +00:00
|
|
|
{{ message.Content.Headers.Subject.0 }}
|
2014-04-20 14:35:59 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2014-04-20 15:05:50 +00:00
|
|
|
{{ date(message.Created) }}
|
2014-04-20 14:35:59 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<button class="btn btn-xs btn-default" title="Delete" ng-click="deleteOne(message)"><span class="glyphicon glyphicon-remove"></span></button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2014-04-20 19:13:39 +00:00
|
|
|
<div class="preview" ng-if="preview">
|
2014-04-20 14:35:59 +00:00
|
|
|
<table class="table" id="headers">
|
2014-04-20 15:05:50 +00:00
|
|
|
<tr ng-repeat="(header, value) in preview.Content.Headers">
|
2014-04-20 19:03:53 +00:00
|
|
|
<th>
|
2014-04-20 14:35:59 +00:00
|
|
|
{{ header }}
|
2014-04-20 19:03:53 +00:00
|
|
|
</th>
|
2014-04-20 14:35:59 +00:00
|
|
|
<td>
|
2014-04-20 19:03:53 +00:00
|
|
|
<div ng-repeat="v in value">{{ v }}</div>
|
2014-04-20 14:35:59 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
2014-04-20 19:13:39 +00:00
|
|
|
<div id="content">
|
|
|
|
<ul class="nav nav-tabs">
|
|
|
|
<li class="active"><a href="#preview-html" data-toggle="tab">HTML</a></li>
|
|
|
|
<li><a href="#preview-plain" data-toggle="tab">Plain text</a></li>
|
|
|
|
<li><a href="#preview-source" data-toggle="tab">Source</a></li>
|
|
|
|
</ul>
|
|
|
|
<div class="tab-content">
|
2014-04-22 19:39:54 +00:00
|
|
|
<div class="tab-pane active" id="preview-html" ng-bind-html="preview.previewHTML"></div>
|
2014-04-21 21:32:34 +00:00
|
|
|
<div class="tab-pane" id="preview-plain"><pre>{{ getMessagePlain(preview) }}</pre></div>
|
2014-04-20 19:13:39 +00:00
|
|
|
<div class="tab-pane" id="preview-source"><pre>{{ getSource(preview) }}</pre></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-04-20 14:35:59 +00:00
|
|
|
</div>
|
|
|
|
`;
|
|
|
|
}
|