diff options
author | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-06-24 23:50:25 -0400 |
---|---|---|
committer | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-06-24 23:50:25 -0400 |
commit | 934ca65b610fc245c581a142036766763d1743c5 (patch) | |
tree | 97b796915f67e7ed726ccf51f271dd5495621e03 | |
parent | fe908c14aa9816eea5846279f647a6ea22fc482a (diff) | |
download | hyperkitty-934ca65b610fc245c581a142036766763d1743c5.tar.gz hyperkitty-934ca65b610fc245c581a142036766763d1743c5.tar.xz hyperkitty-934ca65b610fc245c581a142036766763d1743c5.zip |
Index page new look
-rw-r--r-- | templates/index.html | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/templates/index.html b/templates/index.html index 5d1fb39..6c0b831 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,15 +1,18 @@ {% extends "base.html" %} - +{% load i18n %} {% block content %} - <p> - These are the list available on this server: - </p> - <ul> - {% for mlist in lists %} - <li>{{mlist}} ({{mlist}}) -- - <a href="/list/{{mlist}}">Recent</a> -- - <a href="/archives/{{mlist}}">Archives current month</a> - </li> - {% endfor %} - </ul> + <h1>{% trans 'Lists' %}</h1> + + <table class="table table-bordered table-striped"> + <tbody> + {% for mlist in lists %} + <tr> + <td>{{ mlist }}</td> + <td><a href="/list/{{mlist}}"> Overview </a></td> + <td><a href="/archives/{{mlist}}"> Archives </a></td> + </tr> + {% endfor %} + </tbody> + </table> + {% endblock %} |