summaryrefslogtreecommitdiffstats
path: root/templates/patchwork/bundle.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/patchwork/bundle.html')
-rw-r--r--templates/patchwork/bundle.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/templates/patchwork/bundle.html b/templates/patchwork/bundle.html
new file mode 100644
index 0000000..8fa694a
--- /dev/null
+++ b/templates/patchwork/bundle.html
@@ -0,0 +1,39 @@
+{% extends "patchwork/base.html" %}
+
+{% load person %}
+
+{% block title %}{{project.name}}{% endblock %}
+{% block heading %}bundle: {{bundle.name}}{% endblock %}
+
+{% block body %}
+
+<p>This bundle contains patches for the {{ bundle.project.linkname }}
+project.</p>
+
+<p><a href="{% url patchwork.views.bundle.mbox bundle_id=bundle.id %}"
+>Download bundle as mbox</a></p>
+
+
+<form method="post">
+ <input type="hidden" name="form" value="bundle"/>
+<table class="form">
+
+ <tr>
+ <th colspan="2" class="headerrow">Bundle settings</th>
+ </tr>
+
+{{ bundleform }}
+ <tr>
+ <td colspan="2" class="submitrow">
+ <input type="submit" name="action" value="Update"/>
+ <input type="submit" name="action" value="Delete"/>
+ </td>
+ </tr>
+</table>
+</form>
+
+<div style="clear: both; padding: 1em;"></div>
+
+{% include "patchwork/patch-list.html" %}
+
+{% endblock %}