builds.chtml: rearrange the select lists to save space

This commit is contained in:
Mike Bonnet 2008-10-02 01:44:22 -04:00
parent 05a1ec6e0c
commit 58972ec76f

View file

@ -11,16 +11,6 @@
<tr>
<td colspan="#if $tag then '6' else '5'#">
<table class="nested">
#if $tag
<tr><td>
<strong>Inherited</strong>:
</td><td>
<select name="inherited" class="filterlist" onchange="javascript: window.location = 'builds?inherited=' + this.value + '$util.passthrough_except($self, 'inherited')';">
<option value="1" #if $inherited then 'selected="selected"' else ''#>yes</option>
<option value="0" #if not $inherited then 'selected="selected"' else ''#>no</option>
</select>
</td></tr>
#end if
<tr><td>
<strong>State</strong>:
</td><td>
@ -30,8 +20,7 @@
<option value="$koji.BUILD_STATES[$stateOpt]" #if $state == $koji.BUILD_STATES[$stateOpt] then 'selected="selected"' else ''#>$stateOpt.lower()</option>
#end for
</select>
</td></tr>
<tr><td>
</td><td>
<strong>Built by</strong>:
</td><td>
<select name="userID" class="filterlist" onchange="javascript: window.location = 'builds?userID=' + this.value + '$util.passthrough_except($self, 'userID')';">
@ -44,6 +33,16 @@
#end for
</select>
</td></tr>
#if $tag
<tr><td>
<strong>Inherited</strong>:
</td><td>
<select name="inherited" class="filterlist" onchange="javascript: window.location = 'builds?inherited=' + this.value + '$util.passthrough_except($self, 'inherited')';">
<option value="1" #if $inherited then 'selected="selected"' else ''#>yes</option>
<option value="0" #if not $inherited then 'selected="selected"' else ''#>no</option>
</select>
</td></tr>
#end if
</table>
</td>
</tr>