Commit ce0851b8 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 156670: Move the 'Alias' field on its own row when viewing a bug - Patch by…

Bug 156670: Move the 'Alias' field on its own row when viewing a bug - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=myk
parent 1b334207
...@@ -130,28 +130,33 @@ ...@@ -130,28 +130,33 @@
<tr> <tr>
<td valign="top"> <td valign="top">
<table cellspacing="1" cellpadding="1"> <table cellspacing="1" cellpadding="1">
<tr> <tr>
<td align="right"> <td align="right">
[% IF Param('useclassification') %] [% IF Param('useclassification') && bug.classification_id != 1 %]
[% IF bug.classification_id != "1" %] <b>[[% bug.classification FILTER html %]]</b>
<b>[[% bug.classification FILTER html %]]</b>
[% END %]
[% END %] [% END %]
<b>[% terms.Bug %]#:</b> <b>[% terms.Bug %]#:</b>
</td> </td>
<td> <td>
<a href="[% Param('urlbase') %]show_bug.cgi?id=[% bug.bug_id %]"> <a href="[% Param('urlbase') %]show_bug.cgi?id=[% bug.bug_id %]">
[% bug.bug_id %]</a> [% bug.bug_id %]</a>
[% IF Param("usebugaliases") %]
<label for="alias" title="a name for the [% terms.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 id="alias" name="alias" value="[% bug.alias FILTER html %]" size="20" maxlength="20">
</label>
[% END %]
</td> </td>
</tr> </tr>
[% IF Param("usebugaliases") %]
<tr>
<td align="right">
<b>Alias:</b>
</td>
<td>
<label for="alias" title="a name for the [% terms.bug %] that can be used in place of its ID number, f.e. when adding it to a list of dependencies">
<input id="alias" name="alias" value="[% bug.alias FILTER html %]"
size="20" maxlength="20">
</label>
</td>
</tr>
[% END %]
<tr> <tr>
<td align="right"> <td align="right">
<b><u>P</u>roduct:</b> <b><u>P</u>roduct:</b>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment