2013-03-13 11:58:46 -04:00
|
|
|
<div data-role="header" data-position="fixed">
|
|
|
|
<input type="button" id="backBtn" data-icon="arrow-l" value="Back" class="ui-btn-left">
|
2013-03-18 13:23:51 -04:00
|
|
|
<h1><%- subject %></h1>
|
2013-03-13 11:58:46 -04:00
|
|
|
<a href="#compose" data-role="button" data-icon="back" data-iconpos="right" class="ui-btn-right">Reply</a>
|
|
|
|
</div><!-- /header -->
|
|
|
|
|
|
|
|
<div data-role="content">
|
|
|
|
<ul data-role="listview" data-theme="d" data-divider-theme="d" id="idEmailList" data-mini="true">
|
|
|
|
|
|
|
|
<li style="border: 0px">
|
2013-04-29 07:39:06 -04:00
|
|
|
<h3>from: <%- from[0].name %> <<%- from[0].address %>></h3>
|
|
|
|
<p>to:
|
|
|
|
<% _.each(to, function(o) { %>
|
|
|
|
<%- o.name %> <<%- o.address %>>
|
|
|
|
<% }); %>
|
|
|
|
</p>
|
2013-03-13 11:58:46 -04:00
|
|
|
</li>
|
|
|
|
|
|
|
|
<li>
|
2013-03-18 13:23:51 -04:00
|
|
|
<h3 id="idMailSubject"><%- subject %></h3>
|
|
|
|
<p id="idMailDate"><%- sentDate %></p>
|
2013-03-13 11:58:46 -04:00
|
|
|
</li>
|
|
|
|
|
2013-05-04 07:02:17 -04:00
|
|
|
<li id="bodyItem" style="background-color: #FFFFFF">
|
|
|
|
<div style="font-size: 8pt; font-weight: normal">
|
|
|
|
<iframe id="idMailContent" sandbox="allow-same-origin" width="100%" height="100%" frameborder="0" scrolling="no"></iframe>
|
|
|
|
</div>
|
2013-03-13 11:58:46 -04:00
|
|
|
</li>
|
|
|
|
|
|
|
|
</ul>
|
|
|
|
</div><!-- /content -->
|