aboutsummaryrefslogtreecommitdiff
blob: e167c22484abb165e005f9f35d1ddb88ff4ffe71 (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
{% 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 %}