]> git.ozlabs.org Git - patchwork/blob - templates/patchwork/list.html
805406333a5f97fde73283d3b2210bda3e46b05c
[patchwork] / templates / patchwork / list.html
1 {% extends "base.html" %}
2
3 {% load person %}
4
5 {% block title %}{{project.name}}{% endblock %}
6 {% block heading %}{{project.name}}{% endblock %}
7
8 {% block body %}
9
10 <h2>Incoming patches</h2>
11
12 {% if errors %}
13 <p>The following error{{ errors|length|pluralize:" was,s were" }} encountered
14 while updating patches:</p>
15 <ul class="errorlist">
16 {% for error in errors %}
17  <li>{{ error }}</li>
18 {% endfor %}
19 </ul>
20 {% endif %}
21
22 {% include "patchwork/patch-list.html" %}
23
24 {% endblock %}