diff options
author | myk%mozilla.org <> | 2002-07-04 08:07:09 +0200 |
---|---|---|
committer | myk%mozilla.org <> | 2002-07-04 08:07:09 +0200 |
commit | 46c9fb479d36e0a0b3fcbc447d7483ec09666d43 (patch) | |
tree | 35b145824f00cee436b84e31de58b4955927aa86 /template | |
parent | 690839509f1ce985205824e8092d5893a2130ba6 (diff) | |
download | bugzilla-46c9fb479d36e0a0b3fcbc447d7483ec09666d43.tar.gz bugzilla-46c9fb479d36e0a0b3fcbc447d7483ec09666d43.tar.xz |
Fix for bug 99203: Implements bug aliases feature.
r=bbaetz,jouni
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/edit.html.tmpl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl index 81b0a15bf..f88fb4002 100644 --- a/template/en/default/bug/edit.html.tmpl +++ b/template/en/default/bug/edit.html.tmpl @@ -49,6 +49,12 @@ <td> <a href="[% Param('urlbase') %]show_bug.cgi?id=[% bug.bug_id %]"> [% bug.bug_id %]</a> + [% IF Param("usebugaliases") %] + <label title="a name for the bug that can be used in place of its ID number, f.e. when adding it to a list of dependencies"> + <b>alias:</b> + <input name="alias" value="[% bug.alias FILTER html %]" size="20" maxlength="20"> + </label> + [% END %] </td> <td> </td> |