summaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2008-06-29 02:05:41 +0200
committerlpsolit%gmail.com <>2008-06-29 02:05:41 +0200
commita6f41ad1a4ff69fd050ba4a3e9e7c3fa8033de51 (patch)
tree0e5f16e67c7b34b522b05d4c76a9494718c32e15 /template
parent75e92404700746d6fb0a05e6ee098fe88efc7530 (diff)
downloadbugzilla-a6f41ad1a4ff69fd050ba4a3e9e7c3fa8033de51.tar.gz
bugzilla-a6f41ad1a4ff69fd050ba4a3e9e7c3fa8033de51.tar.xz
Bug 431370: Make the bug summary edit field larger on show_bug.cgi - Patch by Guy Pyrzak <guy.pyrzak@gmail.com> r/a=LpSolit
Diffstat (limited to 'template')
-rw-r--r--template/en/default/bug/edit.html.tmpl44
1 files changed, 28 insertions, 16 deletions
diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl
index 27b778687..d898f157f 100644
--- a/template/en/default/bug/edit.html.tmpl
+++ b/template/en/default/bug/edit.html.tmpl
@@ -314,32 +314,44 @@
</span>
- <span id="summary_alias_input">
- <span id="summary">
+ <div id="summary_alias_input">
+ <table id="summary">
[% IF Param("usebugaliases") %]
- [% IF bug.check_can_change_field('alias', 0, 1) %]
- <label
- for="alias"
- title="a name for the
- [% terms.bug %] that can be used in place of its ID number,
- [%%] e.g. when adding it to a list of dependencies"
- >Alias</label>:&nbsp;
+ <tr>
+ [% IF bug.check_can_change_field('alias', 0, 1) %]
+ <td>
+ <label
+ for="alias"
+ title="a name for the
+ [% terms.bug %] that can be used in place of its ID number,
+ [%%] e.g. when adding it to a list of dependencies"
+ >Alias</label>:</td><td>
[% ELSIF bug.alias %]
- (
+ <td colspan="2">(
+ [% ELSE %]
+ <td colspan="2">
[% END %]
[% PROCESS input inputname => "alias"
size => "20"
maxlength => "20"
no_td => 1
- %][% ") " IF NOT bug.check_can_change_field('alias', 0, 1)
+ %][% ")" IF NOT bug.check_can_change_field('alias', 0, 1)
&& bug.alias %]
+ </td>
+ </tr>
[% END %]
[%# *** Summary *** %]
- <label accesskey="s" for="short_desc"><u>S</u>ummary</label>:&nbsp;
- [% PROCESS input inputname => "short_desc" size => "60" colspan => 2
- maxlength => 255 spellcheck => "true" no_td => 1 %]
- </span>
- </span>
+ <tr>
+ <td>
+ <label accesskey="s" for="short_desc"><u>S</u>ummary</label>:
+ </td>
+ <td>
+ [% PROCESS input inputname => "short_desc" size => "80" colspan => 2
+ maxlength => 255 spellcheck => "true" no_td => 1 %]
+ </td>
+ </tr>
+ </table>
+ </div>
</div>
<script type="text/javascript">
hideAliasAndSummary('[% bug.short_desc FILTER js %]', '[% bug.alias FILTER js %]');