blob: d24a2390b898a31a5b379f1f088f0cd6c268d69d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
{% extends "base.html" %}
{% block content %}
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">
<span class="fa fa-fw fa-cubes"></span>Maintainers
</h3>
</div>
<ul class="nav nav-tabs nav-justified" id="tabnav">
<li><a href="#people" data-toggle="tab"><strong>People</strong></a></li>
<li><a href="#projects" data-toggle="tab"><strong>Projects</strong></a></li>
</ul>
<div class="table-responsive">
<div class="tab-content">
<div class="tab-pane active" id="people">
<table class="table table-striped">
<thead>
<tr>
<th>Email</th>
<th>Name</th>
</tr>
</thead>
{% for person in people -%}
<tr>
<td class="text-nowrap"><a href="maintainer/{{ person.email }}">{{ person.email }}</a></td>
<td>{{ person.name }}</td>
</tr>
{%- endfor %}
</table>
</div>
<div class="tab-pane active" id="projects">
<table class="table table-striped">
<thead>
<tr>
<th>Email</th>
<th>Name</th>
<th>Descriptions</th>
</tr>
</thead>
{% for project in projects -%}
<tr>
<td class="text-nowrap"><a href="maintainer/{{ project.email }}">{{ project.email }}</a></td>
<td>{{ project.name }}</td>
<td>{{ project.description }}</td>
</tr>
{%- endfor %}
</table>
</div>
</div>
</div>
{% endblock %}
|