diff options
author | Kohei Yoshino <kohei.yoshino@gmail.com> | 2018-08-06 18:23:28 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2018-08-06 18:23:28 +0200 |
commit | 520ce5b4cd66ebb6c66fdecd7e66750c9bc8f00c (patch) | |
tree | 9b229efe45dd9990a069ff3537f3faf549be44be /extensions | |
parent | 905e6eedc2a1647aa02c931fe35aacc5b171cf9b (diff) | |
download | bugzilla-520ce5b4cd66ebb6c66fdecd7e66750c9bc8f00c.tar.gz bugzilla-520ce5b4cd66ebb6c66fdecd7e66750c9bc8f00c.tar.xz |
Bug 1474809 - add "new to bugzilla" tag to non-comment changes
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl | 1 | ||||
-rw-r--r-- | extensions/TagNewUsers/template/en/default/hook/bug/changes-user.html.tmpl | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl index 36494773b..08c6b5b64 100644 --- a/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl +++ b/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl @@ -222,6 +222,7 @@ [% IF extra_class %] <span class="user-role">([% extra_class.ucfirst FILTER none %])</span> [% END %] + [% Hook.process('user', 'bug/changes.html.tmpl') %] </td> <td class="comment-actions"> <button type="button" class="change-spinner minor" id="as-[% id FILTER none %]">-</button> diff --git a/extensions/TagNewUsers/template/en/default/hook/bug/changes-user.html.tmpl b/extensions/TagNewUsers/template/en/default/hook/bug/changes-user.html.tmpl new file mode 100644 index 000000000..56657c96b --- /dev/null +++ b/extensions/TagNewUsers/template/en/default/hook/bug/changes-user.html.tmpl @@ -0,0 +1,20 @@ +[%# 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 user.in_group('canconfirm') %] +[% IF action.who.is_new %] +<span class="new_user" title=" +[%- action.who.comment_count FILTER html %] comment[% "s" IF action.who.comment_count != 1 -%] +, created [% +IF action.who.creation_age == 0 %]today[% +ELSIF action.who.creation_age > 365 %]more than a year ago[% +ELSE %][% action.who.creation_age FILTER html %] day[% "s" IF action.who.creation_age != 1 %] ago[% END %]." + > +(New to [% terms.Bugzilla %]) +</span> +[% END %] |