source: batchmodifyplugin/0.12/trunk/batchmod/templates/batchmod.html @ 8826

Last change on this file since 8826 was 8826, checked in by CuriousCurmudgeon, 14 years ago

refs #3739

  • Send notifications message only appears if smtp_enabled is true.
File size: 2.2 KB
Line 
1<!DOCTYPE html
2    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4<html xmlns="http://www.w3.org/1999/xhtml"
5    xmlns:py="http://genshi.edgewall.org/"
6    xmlns:xi="http://www.w3.org/2001/XInclude">
7<body>
8   
9<form id="batchmod_form" method="post">
10   
11<fieldset id="batchmod_fieldset">
12    <legend class="foldable">Batch Modify</legend>
13    <table summary="Batch modification fields">
14        <tr id="batchmod_comment">
15            <th colspan="2">
16                <label for="batchmod_value_comment">Comment:</label>
17            </th>
18            <td class="fullrow"><textarea
19                id="batchmod_value_comment" name="batchmod_value_comment" value="" cols="70" rows="5"/>
20            </td>
21        </tr>
22       
23        <tr>
24            <td colspan="3">
25                <label class="batchmod_label" for="add_batchmod_field">Add Field:</label>
26                <select id="add_batchmod_field">
27                    <option></option>
28                    <option py:for="field in fields" py:if="field.name not in ('time', 'changetime')" value="${field.name}">${field.label}</option>
29                </select>
30            </td>
31        </tr>
32        <tr>
33            <td colspan="3">
34                <label class="batchmod_label" for="batchmod_modify_changetime">Modify Ticket Changetime</label>
35                <input type="checkbox" id="batchmod_modify_changetime" name="batchmod_modify_changetime" value="true" checked="checked" />
36            </td>
37        </tr>
38        <tr py:if="notify_enabled">
39            <td colspan="3">
40                <label class="batchmod_label" for="batchmod_send_notifications">Send E-mail Notifications</label>
41                <input type="checkbox" id="batchmod_send_notifications" name="batchmod_send_notifications" value="true" checked="checked" />
42            </td>
43       </tr>
44    </table>
45   
46    <div class="buttons">
47        <input type="hidden" name="selectedTickets" value=""/>
48        <input type="hidden" name="query_href" value="${query_href}"/>
49        <input type="submit" id="batchmod_submit" name="batchmod_submit" value="Change tickets" />
50    </div>
51
52</fieldset>
53
54</form>
55</body>
56
57</html>
Note: See TracBrowser for help on using the repository browser.