diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2011-12-08 21:01:57 +0100 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2011-12-08 21:01:57 +0100 |
commit | 60fb0c9b84f771a16a8abed0e1847b409b197217 (patch) | |
tree | 91630354cc75f081c38a95a30907e9aa2647bc13 /template/en | |
parent | 720db163b9814b294b163347d994e513b8771ae7 (diff) | |
parent | 62410084926e1473c903c43b53d09c99311746c2 (diff) | |
download | bugzilla-60fb0c9b84f771a16a8abed0e1847b409b197217.tar.gz bugzilla-60fb0c9b84f771a16a8abed0e1847b409b197217.tar.xz |
merged with bugzilla/4.2
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/bug/edit.html.tmpl | 14 | ||||
-rw-r--r-- | template/en/default/bug/field-label.html.tmpl | 3 |
2 files changed, 7 insertions, 10 deletions
diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl index 3a154b557..ccec86449 100644 --- a/template/en/default/bug/edit.html.tmpl +++ b/template/en/default/bug/edit.html.tmpl @@ -531,15 +531,11 @@ [%############################################################################%] [% BLOCK section_url_keyword_whiteboard %] <tr> - <td class="field_label"> - <label for="bug_file_loc" accesskey="u"><b> - [% IF is_safe_url(bug.bug_file_loc) %] - <a href="[% bug.bug_file_loc FILTER html %]"><u>U</u>RL</a> - [% ELSE %] - <u>U</u>RL - [% END %] - [%%]</b></label>: - </td> + [% INCLUDE "bug/field-label.html.tmpl" + field = bug_fields.bug_file_loc + editable = 1 + accesskey = "u" + %] <td> [% IF bug.check_can_change_field("bug_file_loc", 0, 1) %] <span id="bz_url_edit_container" class="bz_default_hidden"> diff --git a/template/en/default/bug/field-label.html.tmpl b/template/en/default/bug/field-label.html.tmpl index fe3bed75b..ecb49318e 100644 --- a/template/en/default/bug/field-label.html.tmpl +++ b/template/en/default/bug/field-label.html.tmpl @@ -24,6 +24,7 @@ # hidden: True if the field label should start hidden. # rowspan: a "rowspan" value for the label's <th>. # tag_name: the tag to use to surround the label + # accesskey: access key for the label #%] [% DEFAULT tag_name = "th" %] @@ -33,7 +34,7 @@ [% IF rowspan %] rowspan="[% rowspan FILTER html %]"[% END %]> [% IF editable %] - <label for="[% field.name FILTER html %]"> + <label for="[% field.name FILTER html %]"[% IF accesskey %] accesskey="[% accesskey FILTER html %]"[% END %]> [% END %] <a |