diff options
author | Byron Jones <glob@mozilla.com> | 2015-05-28 09:44:19 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-05-28 09:44:19 +0200 |
commit | 09f53409bf172a3d6452d992e3afce7cd7879f12 (patch) | |
tree | 74db9f6a844de699875fedf38e37b5bff5e9dafe /extensions/BugModal/template/en/default/bug_modal | |
parent | 236be0474b114ea15a57d61d3be5931a612fb155 (diff) | |
download | bugzilla-09f53409bf172a3d6452d992e3afce7cd7879f12.tar.gz bugzilla-09f53409bf172a3d6452d992e3afce7cd7879f12.tar.xz |
Bug 1146787: "take" buttons missing in edit mode
Diffstat (limited to 'extensions/BugModal/template/en/default/bug_modal')
-rw-r--r-- | extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl | 7 | ||||
-rw-r--r-- | extensions/BugModal/template/en/default/bug_modal/field.html.tmpl | 16 |
2 files changed, 22 insertions, 1 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 fa87066fd..095724e67 100644 --- a/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl +++ b/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl @@ -455,7 +455,7 @@ [% IF unassigned %] <i>Unassigned</i> [% IF bug.check_can_change_field("assigned_to", 0, 1) %] - <button type="button" id="take-btn" class="minor">Take</button> + <button type="button" class="take-btn minor" data-field="assigned_to">Take</button> [% END %] [% ELSE %] [% INCLUDE bug_modal/user.html.tmpl u=bug.assigned_to %] @@ -465,6 +465,11 @@ field = bug_fields.assigned_to field_type = constants.FIELD_TYPE_USER hide_on_view = 1 + action = { + class = "take-btn" + caption = "Take" + hidden = bug.assigned_to.id == user.id || !user.in_group("editbugs") + } append_content = 1 default = bug.component_obj.default_assignee.login %] diff --git a/extensions/BugModal/template/en/default/bug_modal/field.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/field.html.tmpl index b11152bf1..c988bd645 100644 --- a/extensions/BugModal/template/en/default/bug_modal/field.html.tmpl +++ b/extensions/BugModal/template/en/default/bug_modal/field.html.tmpl @@ -25,6 +25,11 @@ # append_content: (boolean) when called as a WRAPPER, the content will be appended to the # edit html instead of replacing it. forces edit_only (default: false); # default: (string) default value (eg. used as a placeholder in user fields) + # action: (hash) show a button to the right of the edit field (user fields only currently). keys: + # id: (string) optional button id + # class: (string) optional button class + # caption: (string) button caption + # hidden: (boolean) don't show the button (default: false) #%] [% @@ -191,6 +196,14 @@ END; <input name="[% name FILTER html %]" id="[% name FILTER html %]" value="[% value FILTER html %]"> [% CASE constants.FIELD_TYPE_USER %] + [% IF action && !action.hidden %] + <button class="field-button minor [%= action.class FILTER html IF action.class %]" + data-field="[% name FILTER html %]" + [% IF action.id %]id="[% action.id FILTER html %]"[% END %]> + [% action.caption FILTER html %] + </button> + <div class="field-edit-container"> + [% END %] [%# single user %] [% INCLUDE global/userselect.html.tmpl id = name @@ -199,6 +212,9 @@ END; classes = [ "bz_userfield" ] placeholder = default %] + [% IF action && !action.hidden %] + </div> + [% END %] [% CASE constants.FIELD_TYPE_USERS %] [%# multiple users %] |