summaryrefslogtreecommitdiffstats
path: root/templates/patchwork/project.html
blob: 4ea10094e5fcbc1b102ee07e277bc2bd290b44b0 (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
{% extends "patchwork/base.html" %}

{% block title %}{{ project.name }}{% endblock %}
{% block heading %}{{ project.name }}{% endblock %}

{% block body %}

<table class="horizontal">
 <tr>
  <th>Name</th>
  <td>{{project.name}}
 </tr>
 <tr>
  <th>List address</th>
  <td>{{project.listemail}}</td>
 </tr>
 <tr>
  <th>Maintainer{{maintainers|length|pluralize}}</th>
  <td>
   {% for maintainer in maintainers %}
    {{ maintainer.get_profile.name }}
     &lt;<a href="mailto:{{maintainer.email}}">{{maintainer.email}}</a>&gt;
     <br />
   {% endfor %}
 </tr>
 <tr>
  <th>Patch count</th>
  <td>{{n_patches}} (+ {{n_archived_patches}} archived)</td>
 </tr>
</table>
  
{% endblock %}