Update code_sniffer build.xml file to be executable on our system
[phpbb.git] / phpBB / adm / style / acp_words.html
blob3fa4cfc91c5185627a059d8063f30da3d1fa9206
1 <!-- INCLUDE overall_header.html -->
3 <a name="maincontent"></a>
5 <!-- IF S_EDIT_WORD -->
7 <a href="{U_BACK}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_BACK}</a>
9 <h1>{L_ACP_WORDS}</h1>
11 <p>{L_ACP_WORDS_EXPLAIN}</p>
13 <form id="acp_words" method="post" action="{U_ACTION}">
15 <fieldset>
16 <legend>{L_EDIT_WORD}</legend>
17 <dl>
18 <dt><label for="word">{L_WORD}</label></dt>
19 <dd><input id="word" type="text" name="word" value="{WORD}" maxlength="255" /></dd>
20 </dl>
21 <dl>
22 <dt><label for="replacement">{L_REPLACEMENT}</label></dt>
23 <dd><input id="replacement" type="text" name="replacement" value="{REPLACEMENT}" maxlength="255" /></dd>
24 </dl>
25 {S_HIDDEN_FIELDS}
27 <p class="submit-buttons">
28 <input class="button1" type="submit" id="submit" name="save" value="{L_SUBMIT}" />&nbsp;
29 <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
30 {S_FORM_TOKEN}
31 </p>
32 </fieldset>
33 </form>
35 <!-- ELSE -->
37 <h1>{L_ACP_WORDS}</h1>
39 <p>{L_ACP_WORDS_EXPLAIN}</p>
41 <form id="acp_words" method="post" action="{U_ACTION}">
43 <fieldset class="tabulated">
44 <legend>{L_ACP_WORDS}</legend>
45 <p class="quick">
46 {S_HIDDEN_FIELDS}
47 <input class="button2" name="add" type="submit" value="{L_ADD_WORD}" />
48 </p>
50 <table cellspacing="1">
51 <thead>
52 <tr>
53 <th>{L_WORD}</th>
54 <th>{L_REPLACEMENT}</th>
55 <th>{L_ACTION}</th>
56 </tr>
57 </thead>
58 <tbody>
59 <!-- BEGIN words -->
60 <!-- IF words.S_ROW_COUNT is even --><tr class="row1"><!-- ELSE --><tr class="row2"><!-- ENDIF -->
61 <td style="text-align: center;">{words.WORD}</td>
62 <td style="text-align: center;">{words.REPLACEMENT}</td>
63 <td>&nbsp;<a href="{words.U_EDIT}">{ICON_EDIT}</a>&nbsp;&nbsp;<a href="{words.U_DELETE}">{ICON_DELETE}</a>&nbsp;</td>
64 </tr>
65 <!-- BEGINELSE -->
66 <tr class="row3">
67 <td colspan="3">{L_ACP_NO_ITEMS}</td>
68 </tr>
69 <!-- END words -->
70 </tbody>
71 </table>
72 {S_FORM_TOKEN}
73 </fieldset>
74 </form>
75 <!-- ENDIF -->
77 <!-- INCLUDE overall_footer.html -->