mirror of
https://github.com/moparisthebest/mail
synced 2025-02-16 07:00:09 -05:00
fixed display bug
This commit is contained in:
parent
e10759f7f4
commit
2259ac753e
@ -1,5 +1,5 @@
|
||||
<a href="#accounts/<%- account %>/folders/<%- folder %>/read/<%- id %>">
|
||||
<h3><%- from %></h3>
|
||||
<h3><%- from[0].name %></h3>
|
||||
<p><strong><%- subject %></strong></p>
|
||||
<!-- <p><%- body %></p> -->
|
||||
<p class="ui-li-aside"><strong><%- displayDate %></strong></p>
|
||||
|
@ -8,8 +8,12 @@
|
||||
<ul data-role="listview" data-theme="d" data-divider-theme="d" id="idEmailList" data-mini="true">
|
||||
|
||||
<li style="border: 0px">
|
||||
<h3>from: <%- from %></h3>
|
||||
<p>to: <%- to %></p>
|
||||
<h3>from: <%- from[0].name %> <<%- from[0].address %>></h3>
|
||||
<p>to:
|
||||
<% _.each(to, function(o) { %>
|
||||
<%- o.name %> <<%- o.address %>>
|
||||
<% }); %>
|
||||
</p>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
Loading…
Reference in New Issue
Block a user