summaryrefslogtreecommitdiffstats
path: root/templates/contactList.html
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2015-11-16 17:08:58 +0100
committerJan-Christoph Borchardt <hey@jancborchardt.net>2016-02-12 12:09:33 +0100
commit66a883409997227882b60a4ec9c4a98e9aaab0c0 (patch)
tree7b30452662aea5b57d59daf139e1ef7c73bb84b6 /templates/contactList.html
parente3782048d44373b3ed64e2d12360b4aa67b9de4d (diff)
layout for list of contacts, using core classes ported from Mail app
Diffstat (limited to 'templates/contactList.html')
-rw-r--r--templates/contactList.html19
1 files changed, 4 insertions, 15 deletions
diff --git a/templates/contactList.html b/templates/contactList.html
index d368108f..d17c5ea2 100644
--- a/templates/contactList.html
+++ b/templates/contactList.html
@@ -1,15 +1,4 @@
-<table id="contactstable">
- <thead>
- <tr>
- <th class="contact__name">
- <input type="checkbox" id="check-all" class="checkbox" />
- <label for="check-all"></label>
- </th>
- <th>Name</th>
- </tr>
- </thead>
- <tbody>
- <tr ng-repeat="contact in ctrl.contacts | orderBy:'fullName()' track by contact.uid()" contact data="contact"></tr>
- </tbody>
-</table>
-<button type="button" name="button" ng-click="ctrl.createContact()">New Card</button>
+<button class="app-content-list-button" type="button" name="button" ng-click="ctrl.createContact()">Add contact</button>
+
+<div class="app-content-list-item" ng-repeat="contact in ctrl.contacts | orderBy:'fullName()' track by contact.uid()" contact data="contact">
+</div>