]> git.ozlabs.org Git - patchwork/blob - templates/patchwork/project.html
templates: close table cell in project maintainer list
[patchwork] / templates / patchwork / project.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ project.name }}{% endblock %}
4 {% block heading %}{{ project.name }}{% endblock %}
5
6 {% block body %}
7
8 <table class="horizontal">
9  <tr>
10   <th>Name</th>
11   <td>{{project.name}}
12  </tr>
13  <tr>
14   <th>List address</th>
15   <td>{{project.listemail}}</td>
16  </tr>
17  <tr>
18   <th>Maintainer{{maintainers|length|pluralize}}</th>
19   <td>
20    {% for maintainer in maintainers %}
21     {{ maintainer.get_profile.name }}
22      &lt;<a href="mailto:{{maintainer.email}}">{{maintainer.email}}</a>&gt;
23      <br />
24    {% endfor %}
25   </td>
26  </tr>
27  <tr>
28   <th>Patch count</th>
29   <td>{{n_patches}} (+ {{n_archived_patches}} archived)</td>
30  </tr>
31 </table>
32
33 {% if settings.ENABLE_XMLRPC %}
34 <p>Sample <a href="{% url patchwork.views.help "pwclient/" %}">patchwork
35 client</a> configuration for this project: <a
36 href="{% url patchwork.views.pwclientrc project.linkname %}"
37 >.pwclientrc</a>.</p>
38 {% endif %}
39   
40 {% endblock %}