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

{% load person %}
{% load static %}

{% 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 %}