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

{% load person %}

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

{% block body %}

<h2>Incoming patches</h2>

{% if errors %}
<p>The following error{{ errors|length|pluralize:" was,s were" }} encountered
while updating patches:</p>
<ul class="errorlist">
{% for error in errors %}
 <li>{{ error }}</li>
{% endfor %}
</ul>
{% endif %}

{% include "patchwork/patch-list.html" %}

{% endblock %}