64 lines
2.0 KiB
HTML
64 lines
2.0 KiB
HTML
|
{extends "idf/admin/base.html"}
|
||
|
{block docclass}yui-t1{assign $inIssueTracking = true}{/block}
|
||
|
{block body}
|
||
|
<form method="post" action=".">
|
||
|
<table class="form" summary="">
|
||
|
<tr>
|
||
|
<td colspan="2"><strong>{$form.f.labels_issue_template.labelTag}:</strong><br />
|
||
|
{if $form.f.labels_issue_template.errors}{$form.f.labels_issue_template.fieldErrors}{/if}
|
||
|
{$form.f.labels_issue_template|unsafe}
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td colspan="2"><strong>{$form.f.labels_issue_open.labelTag}:</strong><br />
|
||
|
{if $form.f.labels_issue_open.errors}{$form.f.labels_issue_open.fieldErrors}{/if}
|
||
|
{$form.f.labels_issue_open|unsafe}
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td colspan="2"><strong>{$form.f.labels_issue_closed.labelTag}:</strong><br />
|
||
|
{if $form.f.labels_issue_closed.errors}{$form.f.labels_issue_closed.fieldErrors}{/if}
|
||
|
{$form.f.labels_issue_closed|unsafe}
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td colspan="2"><strong>{$form.f.labels_issue_predefined.labelTag}:</strong><br />
|
||
|
{if $form.f.labels_issue_predefined.errors}{$form.f.labels_issue_predefined.fieldErrors}{/if}
|
||
|
{$form.f.labels_issue_predefined|unsafe}<br />
|
||
|
<span class="helptext">{$form.f.labels_issue_predefined.help_text}</span>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td colspan="2"><strong>{$form.f.labels_issue_one_max.labelTag}:</strong><br />
|
||
|
{if $form.f.labels_issue_one_max.errors}{$form.f.labels_issue_one_max.fieldErrors}{/if}
|
||
|
{$form.f.labels_issue_one_max|unsafe}
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td colspan="2"><strong>{$form.f.issue_relations.labelTag}:</strong><br />
|
||
|
{if $form.f.issue_relations.errors}{$form.f.issue_relations.fieldErrors}{/if}
|
||
|
{$form.f.issue_relations|unsafe}<br />
|
||
|
<span class="helptext">{$form.f.issue_relations.help_text}</span>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td colspan="2">
|
||
|
<input type="submit" value="{trans 'Save Changes'}" name="submit" />
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</form>
|
||
|
|
||
|
|
||
|
{/block}
|
||
|
|
||
|
{block context}
|
||
|
<div class="issue-submit-info">
|
||
|
{blocktrans}
|
||
|
<p><strong>Instructions:</strong></p>
|
||
|
<p>List one status value per line in desired sort-order.</p>
|
||
|
<p>Optionally, use an equals-sign to document the meaning of each status value.</p>
|
||
|
{/blocktrans}
|
||
|
</div>
|
||
|
{/block}
|