]> git.ozlabs.org Git - patchwork/blob - patchwork/templates/patchwork/bundle.html
login: Focus the username field on load
[patchwork] / patchwork / templates / patchwork / bundle.html
1 {% extends "base.html" %}
2
3 {% load person %}
4 {% load static %}
5
6 {% block headers %}
7   <script type="text/javascript" src="{% static "js/jquery.tablednd.js" %}"></script>
8   <script type="text/javascript" src="{% static "js/bundle.js" %}"></script>
9 {% endblock %}
10 {% block title %}{{project.name}}{% endblock %}
11 {% block heading %}bundle: {{bundle.owner.username}} /
12 {{bundle.name}}{% endblock %}
13
14 {% block body %}
15
16 <p>This bundle contains patches for the {{ bundle.project.linkname }}
17 project.</p>
18
19 <p><a href="{% url 'patchwork.views.bundle.mbox' username=bundle.owner.username bundlename=bundle.name %}">Download bundle as mbox</a></p>
20
21 {% if bundleform %}
22 <form method="post">
23  {% csrf_token %}
24  <input type="hidden" name="form" value="bundle"/>
25 <table class="form">
26
27  <tr>
28   <th colspan="2" class="headerrow">Bundle settings</th>
29  </tr>
30
31 {{ bundleform }}
32  <tr>
33   <td colspan="2" class="submitrow">
34    <input type="submit" name="action" value="Update"/>
35    <input type="submit" name="action" value="Delete"/>
36   </td>
37  </tr>
38 </table>
39 </form>
40
41 <div style="clear: both; padding: 1em;"></div>
42 {% endif %}
43
44 {% include "patchwork/patch-list.html" %}
45
46 {% endblock %}