2013-09-18 12:47:18 -04:00
|
|
|
<!-- nav controll and section headline -->
|
|
|
|
<header data-icon="" ng-click="openNav(); $event.stopPropagation()">
|
2013-09-30 15:22:46 -04:00
|
|
|
<h2>{{currentFolder.type}}</h2>
|
2013-09-18 12:47:18 -04:00
|
|
|
</header>
|
|
|
|
|
2013-10-16 09:21:23 -04:00
|
|
|
<div class="list-wrapper" ng-iscroll>
|
|
|
|
<ul class="mail-list">
|
|
|
|
<li ng-class="{'mail-list-active': email === selected, 'mail-list-attachment': email.attachments !== undefined && email.attachments.length > 0, 'mail-list-unread': email.unread, 'mail-list-replied': email.answered}" ng-click="select(email)" ng-repeat="email in emails">
|
|
|
|
<h3>{{email.from[0].name || email.from[0].address}}</h3>
|
|
|
|
<div class="head">
|
2013-10-17 11:59:18 -04:00
|
|
|
<p class="subject">{{email.subject || 'No subject'}}</p>
|
2013-10-16 09:21:23 -04:00
|
|
|
<time>{{email.sentDate | date:'mediumDate'}}</time>
|
|
|
|
</div>
|
|
|
|
<p class="body">{{email.body}}</p>
|
|
|
|
</li>
|
|
|
|
</ul><!--/.mail-list-->
|
|
|
|
</div>
|
2013-09-27 11:48:21 -04:00
|
|
|
|
2013-09-28 10:08:12 -04:00
|
|
|
<footer ng-click="synchronize()">
|
|
|
|
{{lastUpdateLbl}} {{lastUpdate | date:'shortTime'}}
|
2013-09-27 11:48:21 -04:00
|
|
|
</footer>
|