]> git.ozlabs.org Git - patchwork/blob - templates/patchwork/bundle.html
68bf5705bed7af347dcbbaabf024906984bf3379
[patchwork] / templates / patchwork / bundle.html
1 {% extends "base.html" %}
2
3 {% load person %}
4
5 {% block title %}{{project.name}}{% endblock %}
6 {% block heading %}bundle: {{bundle.name}}{% endblock %}
7
8 {% block body %}
9
10 <p>This bundle contains patches for the {{ bundle.project.linkname }}
11 project.</p>
12
13 <p><a href="{% url patchwork.views.bundle.mbox bundle_id=bundle.id %}"
14 >Download bundle as mbox</a></p>
15
16
17 <form method="post">
18  <input type="hidden" name="form" value="bundle"/>
19 <table class="form">
20
21  <tr>
22   <th colspan="2" class="headerrow">Bundle settings</th>
23  </tr>
24
25 {{ bundleform }}
26  <tr>
27   <td colspan="2" class="submitrow">
28    <input type="submit" name="action" value="Update"/>
29    <input type="submit" name="action" value="Delete"/>
30   </td>
31  </tr>
32 </table>
33 </form>
34
35 <div style="clear: both; padding: 1em;"></div>
36
37 {% include "patchwork/patch-list.html" %}
38
39 {% endblock %}