summaryrefslogtreecommitdiffstats
path: root/templates/index.html
diff options
context:
space:
mode:
authorAlexander Sulfrian <alex@spline.inf.fu-berlin.de>2013-09-04 16:02:55 +0000
committerpad <pad@vm-pad-b.spline.inf.fu-berlin.de>2013-09-04 16:02:55 +0000
commita6624cda1ad4d31d98a18a258ed65899119aff56 (patch)
treef4d9fe5b63c8df431d1544968dfd0b2fd89cc534 /templates/index.html
parentd29ad289dc6b4873c1ab06841509aeb21fa28958 (diff)
downloadpadlite-teams-a6624cda1ad4d31d98a18a258ed65899119aff56.tar.gz
padlite-teams-a6624cda1ad4d31d98a18a258ed65899119aff56.tar.bz2
padlite-teams-a6624cda1ad4d31d98a18a258ed65899119aff56.zip
views: add group detail page
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/index.html b/templates/index.html
index 6898a42..c92a3a9 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -11,7 +11,7 @@
<div class="list-group">
{% for group in groups %}
- <li class="list-group-item">{{group}}</li>
+ <a class="list-group-item" href="{{ url_for('group', group_name=group.name) }}">{{group}}</a>
{% endfor %}
</div>
</div>