diff options
author | lpsolit%gmail.com <> | 2007-10-03 18:38:32 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2007-10-03 18:38:32 +0000 |
commit | 76e5ced1875498b9f4de15019abcb54a73ed09bc (patch) | |
tree | f094a435d6015e0a0e89ccf786ceef280cb47760 /template/en/default/bug | |
parent | 6ccf771c7533b4bd83d8d43f706256b8613965d4 (diff) | |
download | bugs-76e5ced1875498b9f4de15019abcb54a73ed09bc.tar bugs-76e5ced1875498b9f4de15019abcb54a73ed09bc.tar.gz bugs-76e5ced1875498b9f4de15019abcb54a73ed09bc.tar.bz2 bugs-76e5ced1875498b9f4de15019abcb54a73ed09bc.tar.xz bugs-76e5ced1875498b9f4de15019abcb54a73ed09bc.zip |
Bug 324990: The "Bug Activity" page does not display the bug summary in the title of the page - Patch by Frédéric Buclin <LpSolit@gmail.com> r=bkor a=LpSolit
Diffstat (limited to 'template/en/default/bug')
-rw-r--r-- | template/en/default/bug/activity/show.html.tmpl | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/template/en/default/bug/activity/show.html.tmpl b/template/en/default/bug/activity/show.html.tmpl index c18e04bfd..a457df018 100644 --- a/template/en/default/bug/activity/show.html.tmpl +++ b/template/en/default/bug/activity/show.html.tmpl @@ -19,27 +19,31 @@ #%] [%# INTERFACE: - # bug_id: integer. The bug ID. + # bug: object. The bug whose activity is being displayed. + # operations: array of hashes, see activity/table.html.tmpl. # # This template also needs to be called with the interface to the - # activity.html.tmpl template fulfilled. + # activity/table.html.tmpl template fulfilled. #%] [% PROCESS global/variables.none.tmpl %] +[% filtered_desc = bug.short_desc FILTER html %] [% PROCESS global/header.html.tmpl - title = "Changes made to $terms.bug $bug_id" - header = "Activity log" - subheader = "$terms.Bug <a href=\"show_bug.cgi?id=$bug_id\">$bug_id</a>" + title = "Changes made to $terms.bug $bug.bug_id" + header = "Activity log for $terms.bug $bug.bug_id: $filtered_desc" %] -<br> +<p> + [% "Back to $terms.bug $bug.bug_id" FILTER bug_link(bug.bug_id) FILTER none %] +</p> [% PROCESS bug/activity/table.html.tmpl %] -<p> - <a href="show_bug.cgi?id=[% bug_id %]">Back to [% terms.bug %] - [%+ bug_id %]</a> -</p> +[% IF operations.size > 0 %] + <p> + [% "Back to $terms.bug $bug.bug_id" FILTER bug_link(bug.bug_id) FILTER none %] + </p> +[% END %] [% PROCESS global/footer.html.tmpl %] |