summaryrefslogtreecommitdiffstats
path: root/templates/all.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/all.html')
-rw-r--r--templates/all.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/templates/all.html b/templates/all.html
new file mode 100644
index 0000000..d50bf56
--- /dev/null
+++ b/templates/all.html
@@ -0,0 +1,22 @@
+{% extends "layout.html" %}
+{% from "_pagination.html" import render_pagination %}
+
+{% block head %}Public groups{% endblock %}
+
+{% block content %}
+<div class="panel panel-default">
+ <div class="panel-heading">
+ <h3 class="panel-title">Public groups</h3>
+ </div>
+
+ <div class="list-group">
+ {% for group in groups %}
+ <span class="list-group-item">{{group}}</span>
+ {% endfor %}
+ </div>
+
+ <div class="panel-footer text-center">
+ {{ render_pagination(pagination) }}
+ </div>
+</div>
+{% endblock %}