summaryrefslogtreecommitdiffstats
path: root/templates/contactList.html
diff options
context:
space:
mode:
authorHendrik Leppelsack <hendrik@leppelsack.de>2015-11-05 18:55:25 +0100
committerHendrik Leppelsack <hendrik@leppelsack.de>2015-11-05 18:55:25 +0100
commit98cee330babd893531ee5cf0ab1a26ae712a1cb9 (patch)
tree6cce21fe42b53a58a30e06cc6f6bd358a1fd7649 /templates/contactList.html
parent8c9058d0f6ad77a1636488ab3ec806850275adc2 (diff)
add first styling
Diffstat (limited to 'templates/contactList.html')
-rw-r--r--templates/contactList.html20
1 files changed, 14 insertions, 6 deletions
diff --git a/templates/contactList.html b/templates/contactList.html
index ca454a3c..ba9c1f7b 100644
--- a/templates/contactList.html
+++ b/templates/contactList.html
@@ -1,6 +1,14 @@
-List:
-<ul>
- <li ng-repeat="contact in ctrl.addressbook.contacts">
- <contact data="contact"></contact>
- </li>
-</ul>
+<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.addressbook.contacts" contact data="contact"></tr>
+ </tbody>
+</table>