bugzilla-4intranet/template/en/default/bug/create/create.html.tmpl

482 lines
17 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): Gervase Markham <gerv@gerv.net>
# Ville Skyttä <ville.skytta@iki.fi>
# Shane H. W. Travis <travis@sedsystems.ca>
# Marc Schumann <wurblzap@gmail.com>
# Akamai Technologies <bugzilla-dev@akamai.com>
# Max Kanat-Alexander <mkanat@bugzilla.org>
# Frédéric Buclin <LpSolit@gmail.com>
#%]
[% title = BLOCK %]Enter [% terms.Bug %]: [% product.name | html %][% END %]
[% PROCESS global/header.html.tmpl
title = title
quicksearch_tabindex = 30
style_urls = [ 'skins/standard/create_attachment.css', 'skins/standard/calendar.css', "skins/standard/comments.css" ]
javascript_urls = [
"js/attachment.js", "js/bug.js", "js/enter_bug.js", "js/field.js", "js/calendar.js",
"js/bug-visibility.js", "fieldvaluecontrol.cgi?user=${Bugzilla.user.id}"
]
%]
<script type="text/javascript">
<!--
var product_id = [% product.id %];
var product_flag_type_ids = [% json(product_flag_type_ids) %];
var current_user_login = "[% user.login | js %]";
var initial_cc = "[% cc | js %]";
var component_data = [% json(components_json) %];
var wantsReminder = [% Bugzilla.user.wants_worktime_reminder('new bug') ? 'true' : 'false' %];
var noTimeTracking = [% product.notimetracking ? 'true' : 'false' %];
[%# FIXME Move close_status_array into "js resource data" %]
var close_status_array = [
[% SET i = 0 %]
[% FOREACH status = Bugzilla.get_field('bug_status').legal_values %]
[% NEXT IF status.is_open %]
[% ',' IF i; SET i = 1 %]'[% status.name FILTER js %]'
[% END %]
];
-->
</script>
[% SET select_fields = {} %]
[% FOREACH field = Bugzilla.get_fields(
{ type => constants.FIELD_TYPE_SINGLE_SELECT, custom => 0 })
%]
[% select_fields.${field.name} = field %]
[% END %]
<form name="Create" id="Create" method="post" action="post_bug.cgi"
enctype="multipart/form-data" onkeypress="return ctrlEnter(event||window.event,this)"
onsubmit="return validateEntryForm(this)">
<input type="hidden" name="product" value="[% product.name | html %]" id="product" />
<input type="hidden" name="token" value="[% token | html %]" />
<input type="hidden" name="cloned_bug_id" value="[% cloned_bug_id | html %]" />
<input type="hidden" name="cloned_comment" value="[% cloned_comment | html %]" />
[%# Note: in original Bugzilla, this was customised by editing 'bug/create/user-message.html.tmpl' template %]
[% product.entryheaderhtml || Param('entryheaderhtml') | html_light %]
<table width="100%" class="flatten_table"><tr><td>
<table cellspacing="4" cellpadding="2" border="0" width="100%" class="flatten_table">
<tbody>
<tr>
<th rowspan="2" style="width: 10em; white-space: normal; word-wrap: break-word">
Product: <a href="buglist.cgi?product=[% product.name | uri %]&bug_status=OPEN">[% product.name | html %]</a>
</th>
<td>
<b><label class="required" for="component"><a href="describecomponents.cgi?product=[% product.name | url_quote %]">Component</a></label>:</b>
<select id="component" name="component" aria-required="true" class="required">
[%- FOREACH c = product.active_components %]
<option id="v[% c.id %]_component" value="[% c.name | html %]"
[% " selected=\"selected\"" IF c.name == default.component %]>
[% c.name | html -%]
</option>
[%- END %]
</select>
<span style="color: gray">(<span class="required_star">*</span> = <span class="required_explanation">Required Field</span>)</span>
</td>
</tr>
<tr>
<td><div id="comp_desc"></div></td>
</tr>
<tr>
<th>
<label for="short_desc" class="required">Summary</label>:
</th>
<td>
<input name="short_desc" id="short_desc" size="40" value="[% default.short_desc | html %]"
maxlength="255" spellcheck="true" aria-required="true" style="width: 100%"
class="required" />
</td>
</tr>
<tr>
<th><label for="comment_textarea" class="required">Description</label>:</th>
<td style="padding-bottom: 0">
[% defaultcontent = BLOCK %]
[% IF cloned_bug_id %]
+++ This [% terms.bug %] was initially created as a clone of [% terms.Bug %] #[% cloned_bug_id %][% IF cloned_comment %] comment [% cloned_comment %][% END %] +++
[% END %]
[%-# We are within a BLOCK. The comment will be correctly HTML-escaped
# by global/textarea.html.tmpl. So we must not escape the comment here. %]
[% comment | none %]
[%- END %]
[% INCLUDE global/textarea.html.tmpl
name = 'comment'
id = 'comment_textarea'
style = 'width: 100%'
minrows = 15
maxrows = 15
cols = 40
defaultcontent = defaultcontent
%]
<br /><input type="button" value="Preview comment" onclick="document.getElementById('wrapcommentpreview').style.width = document.getElementById('comment_textarea').offsetWidth+'px'; showcommentpreview();" />
[% IF user.is_insider %]
<p>
<input type="checkbox" id="commentprivacy" name="commentprivacy"
[% " checked=\"checked\"" IF commentprivacy %]>
<label for="commentprivacy">
Make description private (visible only to members of the
<strong>[% Param('insidergroup') | html %]</strong> group)
</label>
</p>
[% END %]
[% PROCESS "bug/comment-preview-div.html.tmpl" %]
</td>
</tr>
<tr>
<th>Attachment:</th>
<td colspan="3">
<div id="attachment_false">
<input type="button" value="Add an attachment" onclick="handleWantsAttachment('single')" />
<input type="button" value="Add multiple" onclick="handleWantsAttachment('multi')" />
</div>
<div id="attachment_true" style="display: none">
<input type="button" value="Don't add an attachment" onClick="handleWantsAttachment('none')" />
<input type="button" value="Add multiple" onclick="handleWantsAttachment('multi')" />
<fieldset>
<legend>Add an attachment</legend>
<table class="attachment_entry">
[% PROCESS attachment/createformcontents.html.tmpl
flag_types = product.flag_types.attachment
any_flags_requesteeble = 1
flag_table_id ="attachment_flags"
attach_multi = "show_attach_multi(this);" %]
</table>
</fieldset>
</div>
<div id="attachment_multi" style="display: none">
<input type="button" value="Add single attachment" onclick="handleWantsAttachment('single')" />
<input type="button" value="Don't add an attachment" onClick="handleWantsAttachment('none')" />
<fieldset>
<legend>Add multiple attachments</legend>
<div id="att_multiple" style="display: none"></div>
</fieldset>
</div>
</td>
</tr>
[% IF user.in_group('editbugs', product.id) && Bugzilla.has_keywords %]
<tr>
<th><a href="describekeywords.cgi">Keywords</a>:</th>
<td>
<input id="keywords" name="keywords" size="40" style="width: 100%" value="[% default.keywords | html %]" />
<script type="text/javascript">
addKeywordsAutocomplete();
</script>
<div id="keywords_description_container"></div>
</td>
</tr>
[% END %]
[% IF Bugzilla.get_field('status_whiteboard').enabled %]
<tr>
<th>Whiteboard:</th>
<td colspan="3">
<input id="status_whiteboard" name="status_whiteboard" size="40" style="width: 100%" value="[% default.status_whiteboard | html %]" />
</td>
</tr>
[% END %]
[% IF group.size %]
<tr>
<td></td>
<td>
<strong>Only users in all of the selected groups can view this [% terms.bug %]:</strong>
<br /><font size="-1">(Leave all boxes unchecked to make this a public [% terms.bug %].)</font>
<br />
[%# Group checkboxes %]
[% FOREACH g = group %]
<input type="checkbox" id="bit-[% g.bit %]"
name="bit-[% g.bit %]" value="1"
[% " checked=\"checked\"" IF g.checked %]>
<label for="bit-[% g.bit %]">[% g.description | html_light %]</label><br />
[% END %]
</td>
</tr>
[% END %]
[% INCLUDE custom_fields style = "width: 40em"
cf = Bugzilla.active_custom_fields({ 'type' => constants.FIELD_TYPE_TEXTAREA }) %]
[% INCLUDE custom_fields style = "min-width: 20em; max-width: 40em"
cf = Bugzilla.active_custom_fields({ 'type' => constants.FIELD_TYPE_MULTI_SELECT }) %]
</table>
</td><td>
<table cellspacing="4" cellpadding="2" border="0" style="width: 100%">
[% IF Bugzilla.get_field('version').enabled %]
<tr>
[% INCLUDE bug/field.html.tmpl
bug = default, field = select_fields.version, editable = 1,
value_name = default.version %]
</tr>
[% END %]
[% IF Bugzilla.get_field('target_milestone').enabled && Param('letsubmitterchoosemilestone') %]
<tr>
[% INCLUDE bug/field.html.tmpl
bug = default, field = select_fields.target_milestone, editable = 1,
value_name = default.target_milestone %]
</tr>
[% END %]
[% IF Bugzilla.get_field('bug_severity').enabled %]
<tr>
<th><label for="bug_severity"><a href="page.cgi?id=fields.html#bug_severity">Severity:</a></label></th>
<td style="width: 100%">
[% INCLUDE bug/field.html.tmpl
bug = default, field = select_fields.bug_severity, editable = 1, no_tds = 1,
value_name = default.bug_severity %]
<span style="padding: 0 0 0 10%"></span>
[% IF Param('letsubmitterchoosepriority') %]
<span style="white-space: nowrap">
<label for="priority"><b><a href="page.cgi?id=fields.html#priority">Priority:</a></b> </label>
[% INCLUDE bug/field.html.tmpl
bug = default, field = select_fields.priority, editable = 1, no_tds = 1,
value_name = default.priority %]
</span>
[% END %]
</td>
</tr>
[% ELSIF Param('letsubmitterchoosepriority') && Bugzilla.get_field('priority').enabled %]
<tr>
[% INCLUDE bug/field.html.tmpl
bug = default, field = select_fields.priority, editable = 1,
value_name = default.priority %]
</tr>
[% END %]
[% IF Bugzilla.get_field('bug_file_loc').enabled %]
<tr>
<th>URL:</th>
<td colspan="2"><input name="bug_file_loc" size="20" style="width: 100%" value="[% default.bug_file_loc | html %]" /></td>
</tr>
[% END %]
[% IF Bugzilla.get_field('rep_platform').enabled %]
<tr>
[% INCLUDE bug/field.html.tmpl
bug = default, field = select_fields.rep_platform, editable = 1,
value_name = default.rep_platform %]
</tr>
[% END %]
[% IF Bugzilla.get_field('op_sys').enabled %]
<tr>
[% INCLUDE bug/field.html.tmpl
bug = default, field = select_fields.op_sys, editable = 1,
value_name = default.op_sys %]
</tr>
[% END %]
[% guess_platform = Bugzilla.get_field('rep_platform').enabled && !Bugzilla.get_field('rep_platform').default_value %]
[% guess_os = Bugzilla.get_field('op_sys').enabled && !Bugzilla.get_field('op_sys').default_value %]
[% IF guess_platform || guess_os %]
<tr>
<td colspan="2">
We've made a guess at your
[% IF !guess_os %]
platform. Please check it
[% ELSIF !guess_platform %]
operating system. Please check it
[% ELSE %]
operating system and platform. Please check them
[% END %]
and make any corrections if necessary.
</td>
</tr>
[% END %]
<tr><td colspan="2"><hr /></td></tr>
<th><a href="page.cgi?id=fields.html#assigned_to">Assign To</a>:</th>
<td>
[% INCLUDE global/userselect.html.tmpl
name => "assigned_to"
value => default.assigned_to
disabled => assigned_to_disabled
size => 20
style => 'width: 100%'
emptyok => 1
%]
<noscript>(Leave blank to assign to component's default assignee)</noscript>
</td>
[% IF Bugzilla.get_field('qa_contact').enabled %]
<tr>
<th>QA Contact:</th>
<td>
[% INCLUDE global/userselect.html.tmpl
name => "qa_contact"
value => default.qa_contact
disabled => qa_contact_disabled
size => 20
style => 'width: 100%'
emptyok => 1
%]
<noscript>(Leave blank to assign to default qa contact)</noscript>
</td>
</tr>
[% END %]
<tr>
<th>CC:</th>
<td>
[% INCLUDE global/userselect.html.tmpl
name => "cc"
value => cc
disabled => cc_disabled
size => 20
style => 'width: 100%'
multiple => 5
%]
</td>
</tr>
<tr>
<td colspan="2" rowspan="[% num_rows | html %]">
[% IF product.flag_types.bug.size > 0 %]
[% display_flag_headers = 0 %]
[% any_flags_requesteeble = 0 %]
[% FOREACH flag_type = product.flag_types.bug %]
[% NEXT UNLESS flag_type.is_active %]
[% display_flag_headers = 1 %]
[% SET any_flags_requesteeble = 1 IF flag_type.is_requestable && flag_type.is_requesteeble %]
[% END %]
[% IF display_flag_headers %]
[% PROCESS "flag/list.html.tmpl"
flag_types = product_flag_types
any_flags_requesteeble = any_flags_requesteeble
flag_table_id = "bug_flags"
%]
[% END %]
[% END %]
</td>
</tr>
<tr><td colspan="2"><hr /></td></tr>
[% IF bug_status.size == 1 %]
<input type="hidden" name="bug_status" value="[% bug_status.0.name | html %]" />
[% ELSE %]
<tr>
[% INCLUDE bug/field.html.tmpl
bug = default
editable = 1
field = select_fields.bug_status
editable = bug_status.size > 1
value_name = default.bug_status
override_legal_values = bug_status
custom_label = "Initial State"
%]
</tr>
[% END %]
<tr id="resolution_settings" class="bz_default_hidden">
[% INCLUDE bug/field.html.tmpl
bug = default
field = select_fields.resolution
editable = 1
%]
</tr>
[% IF Bugzilla.get_field('alias').enabled %]
<tr>
<th><label for="alias">[% terms.Bug %] alias:</label></th>
<td><input id="alias" name="alias" size="20" value="[% default.alias | html %]" /></td>
</tr>
[% END %]
<tr>
<th>Depends on:</th>
<td><input name="dependson" accesskey="d" value="[% default.dependson | html %]"></td>
</tr>
<tr>
<th>Blocks:</th>
<td><input name="blocked" accesskey="b" value="[% default.blocked | html %]"></td>
</tr>
[% IF user.is_timetracker %]
<tr>
<th>Estimated Hours:</th>
<td>
<input name="estimated_time" size="6" maxlength="6" value="[% default.estimated_time | html %]">&nbsp;
<span style="white-space: nowrap">
<b>Hours Worked:</b>
<input name="work_time" id="work_time" value="[% default.work_time | html %]" size="6" maxlength="6" onchange="checkWorktime(this)" onkeyup="checkWorktime(this)" />
</span>
</td>
</tr>
<tr>
<th>Deadline:</th>
<td>
<input name="deadline" id="deadline" size="10" maxlength="10" value="[% default.deadline | html %]">
<small>(YYYY-MM-DD)</small>
<script type="text/javascript">
Calendar.set('deadline');
</script>
</td>
</tr>
[% END %]
[% IF Bugzilla.active_custom_fields.size %]
<tr><td colspan="2"><hr /></td></tr>
[% END %]
[% PROCESS custom_fields style = "width: 100%"
cf = Bugzilla.active_custom_fields({ 'type' => [ constants.FIELD_TYPE_SINGLE_SELECT, constants.FIELD_TYPE_FREETEXT ] }) %]
[% PROCESS custom_fields style = "width: 100%"
cf = Bugzilla.active_custom_fields({ 'type' => [ constants.FIELD_TYPE_DATETIME, constants.FIELD_TYPE_NUMERIC, constants.FIELD_TYPE_BUG_ID, constants.FIELD_TYPE_EXTURL ] }) %]
</table>
[% BLOCK custom_fields %]
[% FOREACH field = cf %]
<tr id="field_row_[% field.name | html %]">
[%# Do not care about missing default value IDs or objects - JS will re-fill dependent fields %]
[% INCLUDE bug/field.html.tmpl
bug = default
field = field
value_name = field.is_select ? default.${field.name} : ''
value = field.is_select ? '' : default.${field.name}
editable = 1
value_span = 3
%]
</tr>
[% END %]
[% END %]
</td></tr></table>
<hr />
<p>
<input type="submit" id="commit" value="Submit [% terms.Bug %]" />
&nbsp;&nbsp;&nbsp;&nbsp;
<input type="submit" name="maketemplate" id="maketemplate"
value="Remember values as bookmarkable template"
class="expert_fields" />
</p>
<input type="hidden" name="form_name" value="enter_bug" />
</form>
[%# Links or content with more information about the bug being created. %]
[% Hook.process("end") %]
[% PROCESS global/footer.html.tmpl %]