diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/patchwork/bundle-public.html | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/templates/patchwork/bundle-public.html b/templates/patchwork/bundle-public.html index 181e211..1a0347f 100644 --- a/templates/patchwork/bundle-public.html +++ b/templates/patchwork/bundle-public.html @@ -3,11 +3,17 @@ {% load person %} {% block title %}{{project.name}}{% endblock %} -{% block heading %}Bundle: {{bundle.name}}{% endblock %} +{% block heading %}bundle: {{bundle.owner.username}} / +{{bundle.name}}{% endblock %} {% block body %} -<a href="{% url patchwork.views.bundle.public_mbox username=bundle.owner.username bundlename=bundle.name %}">Download</a> bundle as mbox +<p>This bundle contains patches for the {{ bundle.project.linkname }} +project.</p> + +<p><a +href="{% url patchwork.views.bundle.public_mbox username=bundle.owner.username bundlename=bundle.name %}" +>Download bundle as mbox</a></p> {% include "patchwork/patch-list.html" %} |