diff options
author | Byron Jones <glob@mozilla.com> | 2015-11-30 09:15:50 +0100 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-11-30 09:16:02 +0100 |
commit | 0eff9a881c046ad7d80fd9c6cd88a2017e461acb (patch) | |
tree | e0589c5bfa5f1bf7dbd18f110a0adaeded5ed8f0 /extensions/BugModal/template/en/default | |
parent | c36506a266b3316d3a893297ab57b4cdceef19a5 (diff) | |
download | bugzilla-0eff9a881c046ad7d80fd9c6cd88a2017e461acb.tar.gz bugzilla-0eff9a881c046ad7d80fd9c6cd88a2017e461acb.tar.xz |
Bug 1225247 - Bug assignee should be displayed in a more prominent way
Diffstat (limited to 'extensions/BugModal/template/en/default')
-rw-r--r-- | extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl index 3c942d9da..35621f544 100644 --- a/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl +++ b/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl @@ -17,8 +17,10 @@ END; bugid = bug.id; - # this is used in a few places + # these are used in a few places is_cced = bug.cc.contains(user.login); + unassigned = (bug.assigned_to.login == "nobody@mozilla.org") + || (bug.assigned_to.login.search('\.bugs$')); # custom fields that have custom rendering, or should not be rendered rendered_custom_fields = [ @@ -216,6 +218,17 @@ in [% firefox_fixed_version || bug.target_milestone FILTER html %] [% ELSIF bug.dup_id %] of [% terms.bug _ " $bug.dup_id" FILTER bug_link(bug.dup_id) FILTER none %] + [% ELSIF bug.resolution == "" %] + <div id="status-assignee"> + [% + IF unassigned; + "Unassigned"; + ELSE; + "Assigned to "; + INCLUDE bug_modal/user.html.tmpl u=bug.assigned_to nick_only=1; + END; + %] + </div> [% END %] [% IF needinfo.size %] <div id="status-needinfo"> @@ -477,8 +490,6 @@ [%# === people === %] [% - unassigned = (bug.assigned_to.login == "nobody@mozilla.org") - || (bug.assigned_to.login.search('\.bugs$')); sub = []; sub.push("Reporter: " _ bug.reporter.moz_nick); sub.push(unassigned ? "Unassigned" : "Assigned: " _ bug.assigned_to.moz_nick); |