bugzilla-4intranet/template/en/default/list/change-columns.html.tmpl

135 lines
5.0 KiB
Cheetah

[%# The contents of this file are subject to the Mozilla Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is the Bugzilla Bug Tracking System.
#
# The Initial Developer of the Original Code is Netscape Communications
# Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s): Dave Lawrence <dkl@redhat.com>
# Pascal Held <paheld@gmail.com>
#%]
[% PROCESS global/header.html.tmpl
title = "Change Columns"
javascript_urls = [ "js/calendar.js", "js/change-columns.js" ]
style_urls = [ "skins/standard/calendar.css" ]
onload = "initChangeColumns()"
%]
<p>
Select the columns you wish to appear in your [% terms.bug %] lists. Note that
this feature requires cookies to work.
</p>
[% field_descs.short_short_desc = "Summary (first 60 characters)" %]
[% field_descs.short_desc = "Full Summary" %]
[% field_descs.assigned_to_realname = "Assignee Realname" %]
[% field_descs.reporter_realname = "Reporter Realname" %]
[% field_descs.qa_contact_realname = "QA Contact Realname" %]
<form name="changecolumns" action="colchange.cgi" onsubmit="change_submit();">
<input type="hidden" name="rememberedquery" value="[% buffer FILTER html %]" />
<table>
<tr>
<th><div id="avail_header" class="bz_default_hidden">Available Columns</div></th>
<th></th>
<th>Selected Columns</th>
<th></th>
</tr>
<tr>
<td>
<select name="available_columns" id="available_columns"
size="15" multiple="multiple" onchange="updateView();"
class="bz_default_hidden">
</select>
</td>
<td>
<input class="image_button bz_default_hidden" type="button"
id="select_button" name="select" onclick="move_select()" />
<br /><br />
<input class="image_button bz_default_hidden" type="button"
id="deselect_button" name="deselect" onclick="move_deselect()" />
</td>
<td>
<select name="selected_columns" id="selected_columns"
size="15" multiple="multiple" onchange="updateView();">
[% FOREACH column = collist %]
<option value="[% column FILTER html %]" selected="selected">
[% COLUMNS.${column}.title || column | html %]
</option>
[% END %]
[% FOREACH column = masterlist %]
[% IF lsearch(collist, column) == -1 %]
<option value="[% column FILTER html %]">
[% COLUMNS.${column}.title || column | html %]
</option>
[% END %]
[% END %]
</select>
</td>
<td>
<input class="image_button bz_default_hidden" type="button"
id="up_button" name="up" onclick="move_up()" />
<br /><br />
<input class="image_button bz_default_hidden" type="button"
id="down_button" name="down" onclick="move_down()" />
</td>
</tr>
</table>
<p>
<input id="nosplitheader" type="radio" name="splitheader" value="0"
[%+ "checked='checked'" IF NOT splitheader %] />
<label for="nosplitheader">
Normal headers (prettier)
</label>
<br />
<input id="splitheader" type="radio" name="splitheader" value="1"
[%+ "checked='checked'" IF splitheader %] />
<label for="splitheader">
Stagger headers (often makes list more compact)
</label>
</p>
[% IF saved_search %]
<p>
<input type="hidden" name="saved_search"
value="[% saved_search.id FILTER html%]" />
<input type="checkbox" id="save_columns_for_search" checked="checked"
name="save_columns_for_search" value="1" />
<label for="save_columns_for_search">Save this column list
for search '[% saved_search.name FILTER html %]'</label>
</p>
[% END %]
[% IF user.is_timetracker %]
<p>
In the "[% COLUMNS.interval_time.title | html %]" column, show working time for user:
<input name="period_who" id="period_who" size="30" value="[% period_who | html %]" />
between
<input name="period_from" id="period_from" size="10" value="[% period_from | html %]" />
and <input name="period_to" id="period_to" size="10" value="[% period_to | html %]" />
(YYYY-MM-DD or relative dates)
</p>
[% END %]
<p>
<input type="submit" id="change" value="Change Columns" />
</p>
<input type="submit" id="resetit" name="resetit"
value="Reset to [% terms.Bugzilla %] default" />
</form>
[% PROCESS global/footer.html.tmpl %]