diff options
author | Dan McGee <dan@archlinux.org> | 2011-03-08 04:23:42 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-03-08 04:23:42 +0100 |
commit | e82a4d5b9c17fbc5ee63d14a1c87ef12718fa343 (patch) | |
tree | 557bae2bf96ac4d885d30e1d00382d420410d879 /templates/todolists/public_list.html | |
parent | 0c6ee81eb469734dae380f428149f316fdbf75bd (diff) | |
download | archweb-e82a4d5b9c17fbc5ee63d14a1c87ef12718fa343.tar.gz archweb-e82a4d5b9c17fbc5ee63d14a1c87ef12718fa343.tar.xz |
Todo list styling and info cleanups
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/todolists/public_list.html')
-rw-r--r-- | templates/todolists/public_list.html | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/templates/todolists/public_list.html b/templates/todolists/public_list.html index d84a548..0d14250 100644 --- a/templates/todolists/public_list.html +++ b/templates/todolists/public_list.html @@ -22,13 +22,14 @@ </div> </div> {% if todo_lists %} -<div id="public_todo_lists"> +<div id="public-todo-lists"> {% for list in todo_lists %} <div class="box"> - <a name="{{ list.id }}"></a> - <h4>{{ list.name }}</h4> - <div class="todo_list"> - <div>{{ list.description|safe|linebreaks }}</div> + <div class="todo-list"> + <a name="{{ list.id }}"></a> + <h4>{{ list.name }}</h4> + <p class="todo-info">{{ list.date_added|date }} - {{ list.creator.get_full_name }}</p> + <div>{{ list.description|urlize|linebreaks }}</div> <table id="todo-pkglist-{{ list.id }}" class="results todo-table"> <thead> <tr> |