diff options
author | Byron Jones <glob@mozilla.com> | 2015-10-19 16:25:15 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-10-19 16:25:15 +0200 |
commit | 0ce40b991790cd7695f289b27237b8f2751e5f9b (patch) | |
tree | 20adb737898b112b2896cf899ee2237ecbcb0cf4 /extensions/BMO/template/en/default/hook | |
parent | a0fcc8ff20fe57bf442402ba227954ffb33a2175 (diff) | |
download | bugzilla-0ce40b991790cd7695f289b27237b8f2751e5f9b.tar.gz bugzilla-0ce40b991790cd7695f289b27237b8f2751e5f9b.tar.xz |
Bug 1146780 - treat github and mozreview attachments as patches
Diffstat (limited to 'extensions/BMO/template/en/default/hook')
-rw-r--r-- | extensions/BMO/template/en/default/hook/attachment/list-action.html.tmpl | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/extensions/BMO/template/en/default/hook/attachment/list-action.html.tmpl b/extensions/BMO/template/en/default/hook/attachment/list-action.html.tmpl index 9b2463f78..6982b3338 100644 --- a/extensions/BMO/template/en/default/hook/attachment/list-action.html.tmpl +++ b/extensions/BMO/template/en/default/hook/attachment/list-action.html.tmpl @@ -6,7 +6,11 @@ # defined by the Mozilla Public License, v. 2.0. #%] -[% RETURN UNLESS user.in_group("bounty-team") - && attachment.is_bounty_attachment %] +[% IF user.in_group("bounty-team") && attachment.is_bounty_attachment %] + <span id="bounty_attachment"></span> +[% END %] -<span id="bounty_attachment"></span> +[% IF !attachment.ispatch && attachment.can_review %] +   | + <a href="attachment.cgi?id=[% attachment.id FILTER none %]">Review</a> +[% END %] |