summaryrefslogtreecommitdiffstats
path: root/templates/group.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/group.html')
-rw-r--r--templates/group.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/group.html b/templates/group.html
new file mode 100644
index 0000000..b1697e8
--- /dev/null
+++ b/templates/group.html
@@ -0,0 +1,17 @@
+{% extends "layout.html" %}
+
+{% block head %}Group: {{group}}{% endblock %}
+
+{% block content %}
+<div class="panel panel-default">
+ <div class="panel-heading">
+ <h3 class="panel-title">Members</h3>
+ </div>
+
+ <ul class="list-group">
+ {% for member in members %}
+ <li class="list-group-item">{{member.user}}{% if member.admin %} (is admin){% endif %}</li>
+ {% endfor %}
+ </ul>
+</div>
+{% endblock %}