From 29e3eb8b03ba072fa4ce092b45fb98c2e2352744 Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Tue, 28 Apr 2015 12:41:44 +0800 Subject: Bug 1153102: add hooks for bug bounty display and form --- .../hook/bug_modal/attachments-actions.html.tmpl | 13 +++++++++ .../hook/bug_modal/attachments-row.html.tmpl | 32 ++++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 extensions/BMO/template/en/default/hook/bug_modal/attachments-actions.html.tmpl create mode 100644 extensions/BMO/template/en/default/hook/bug_modal/attachments-row.html.tmpl (limited to 'extensions/BMO/template/en') diff --git a/extensions/BMO/template/en/default/hook/bug_modal/attachments-actions.html.tmpl b/extensions/BMO/template/en/default/hook/bug_modal/attachments-actions.html.tmpl new file mode 100644 index 000000000..97d0ed739 --- /dev/null +++ b/extensions/BMO/template/en/default/hook/bug_modal/attachments-actions.html.tmpl @@ -0,0 +1,13 @@ +[%# This Source Code Form is subject to the terms of the Mozilla Public + # License, v. 2.0. If a copy of the MPL was not distributed with this + # file, You can obtain one at http://mozilla.org/MPL/2.0/. + # + # This Source Code Form is "Incompatible With Secondary Licenses", as + # defined by the Mozilla Public License, v. 2.0. + #%] + +[% RETURN IF !user.in_group("bounty-team") || has_bounty_attachment %] + diff --git a/extensions/BMO/template/en/default/hook/bug_modal/attachments-row.html.tmpl b/extensions/BMO/template/en/default/hook/bug_modal/attachments-row.html.tmpl new file mode 100644 index 000000000..67ab62f5a --- /dev/null +++ b/extensions/BMO/template/en/default/hook/bug_modal/attachments-row.html.tmpl @@ -0,0 +1,32 @@ +[%# This Source Code Form is subject to the terms of the Mozilla Public + # License, v. 2.0. If a copy of the MPL was not distributed with this + # file, You can obtain one at http://mozilla.org/MPL/2.0/. + # + # This Source Code Form is "Incompatible With Secondary Licenses", as + # defined by the Mozilla Public License, v. 2.0. + #%] + +[% + RETURN UNLESS attachment.is_bounty_attachment; + has_bounty_attachment = 1; + attachment_rendered = 1; + bounty = attachment.bounty_details; +%] + + + Bounty: [% bounty.reporter_email FILTER html %] + $[% bounty.amount_paid || '-' FILTER html %]
+ Reported: [% bounty.reported_date || '-' FILTER html %] + Fixed: [% bounty.fixed_date || '-' FILTER html %] + Awarded: [% bounty.awarded_date || '-' FILTER html %] + Publish: [% bounty.publish ? "Yes" : "No" FILTER none %]
+ [% IF bounty.credit.size %] + Credit: [% bounty.credit.join(", ") FILTER html %] + [% END %] + + + + Edit Bounty + + + -- cgit v1.2.3-24-g4f1b