aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/templates/setup.html')
-rw-r--r--frontend/templates/setup.html40
1 files changed, 40 insertions, 0 deletions
diff --git a/frontend/templates/setup.html b/frontend/templates/setup.html
new file mode 100644
index 0000000..e167c22
--- /dev/null
+++ b/frontend/templates/setup.html
@@ -0,0 +1,40 @@
+{% extends "base.html" %}
+{% block content %}
+
+<div class="panel panel-default">
+ <div class="panel-heading">
+ <h3 class="panel-title">
+ <span class="fa fa-fw fa-users"></span>Known projects
+ </h3>
+ </div>
+ <div class="table-responsive">
+ <table class="table table-striped">
+ {% for maintainer in maintainers if maintainer.is_project -%}
+ <tr>
+ <td class="text-nowrap">{{ maintainer.email }}</td>
+ <td>{{ maintainer.name }}</td>
+ </tr>
+ {%- endfor %}
+ </table>
+ </div>
+</div>
+
+<div class="panel panel-default">
+ <div class="panel-heading">
+ <h3 class="panel-title">
+ <span class="fa fa-fw fa-user"></span>Known developers
+ </h3>
+ </div>
+ <div class="table-responsive">
+ <table class="table table-striped">
+ {% for maintainer in maintainers if not maintainer.is_project -%}
+ <tr>
+ <td class="text-nowrap">{{ maintainer.email }}</td>
+ <td>{{ maintainer.name }}</td>
+ </tr>
+ {%- endfor %}
+ </table>
+ </div>
+</div>
+
+{% endblock %}