From 640b69c56a85c2c04d4dc57dbe5dc9ebe43633cf Mon Sep 17 00:00:00 2001 From: Jeremy Kerr Date: Sun, 30 Dec 2012 12:31:50 +0800 Subject: [PATCH] templates/bundle: Unify public bundle meta information Currently, the public bundle meta information (the download link before the list of patches) differs from that of the private bundle view. This change unifies this information with the private view. Signed-off-by: Jeremy Kerr --- templates/patchwork/bundle-public.html | 10 ++++++++-- 1 file 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 %} -Download bundle as mbox +

This bundle contains patches for the {{ bundle.project.linkname }} +project.

+ +

Download bundle as mbox

{% include "patchwork/patch-list.html" %} -- 2.39.2