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