| 1 | <!-- INCLUDE overall_header.html -->
|
|---|
| 2 |
|
|---|
| 3 | <a name="maincontent"></a>
|
|---|
| 4 |
|
|---|
| 5 | <!-- IF S_EDIT_WORD -->
|
|---|
| 6 |
|
|---|
| 7 | <a href="{U_BACK}" style="float: {S_CONTENT_FLOW_END};">« {L_BACK}</a>
|
|---|
| 8 |
|
|---|
| 9 | <h1>{L_ACP_WORDS}</h1>
|
|---|
| 10 |
|
|---|
| 11 | <p>{L_ACP_WORDS_EXPLAIN}</p>
|
|---|
| 12 |
|
|---|
| 13 | <form id="acp_words" method="post" action="{U_ACTION}">
|
|---|
| 14 |
|
|---|
| 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}
|
|---|
| 26 |
|
|---|
| 27 | <p class="submit-buttons">
|
|---|
| 28 | <input class="button1" type="submit" id="submit" name="save" value="{L_SUBMIT}" />
|
|---|
| 29 | <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
|
|---|
| 30 | {S_FORM_TOKEN}
|
|---|
| 31 | </p>
|
|---|
| 32 | </fieldset>
|
|---|
| 33 | </form>
|
|---|
| 34 |
|
|---|
| 35 | <!-- ELSE -->
|
|---|
| 36 |
|
|---|
| 37 | <h1>{L_ACP_WORDS}</h1>
|
|---|
| 38 |
|
|---|
| 39 | <p>{L_ACP_WORDS_EXPLAIN}</p>
|
|---|
| 40 |
|
|---|
| 41 | <form id="acp_words" method="post" action="{U_ACTION}">
|
|---|
| 42 |
|
|---|
| 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>
|
|---|
| 49 |
|
|---|
| 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> <a href="{words.U_EDIT}">{ICON_EDIT}</a> <a href="{words.U_DELETE}">{ICON_DELETE}</a> </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 -->
|
|---|
| 76 |
|
|---|
| 77 | <!-- INCLUDE overall_footer.html -->
|
|---|