| 1 | <!-- INCLUDE overall_header.html -->
 | 
|---|
| 2 | 
 | 
|---|
| 3 | <a name="maincontent"></a>
 | 
|---|
| 4 | 
 | 
|---|
| 5 | <!-- IF S_EDIT_BBCODE -->
 | 
|---|
| 6 | 
 | 
|---|
| 7 |         <a href="{U_BACK}" style="float: {S_CONTENT_FLOW_END};">« {L_BACK}</a>
 | 
|---|
| 8 | 
 | 
|---|
| 9 |         <h1>{L_ACP_BBCODES}</h1>
 | 
|---|
| 10 | 
 | 
|---|
| 11 |         <p>{L_ACP_BBCODES_EXPLAIN}</p>
 | 
|---|
| 12 | 
 | 
|---|
| 13 |         <form id="acp_bbcodes" method="post" action="{U_ACTION}">
 | 
|---|
| 14 | 
 | 
|---|
| 15 |         <fieldset>
 | 
|---|
| 16 |                 <legend>{L_BBCODE_USAGE}</legend>
 | 
|---|
| 17 |                 <p>{L_BBCODE_USAGE_EXPLAIN}</p>
 | 
|---|
| 18 |         <dl>
 | 
|---|
| 19 |                 <dt><label for="bbcode_match">{L_EXAMPLES}</label><br /><br /><span>{L_BBCODE_USAGE_EXAMPLE}</span></dt>
 | 
|---|
| 20 |                 <dd><textarea id="bbcode_match" name="bbcode_match" cols="60" rows="5">{BBCODE_MATCH}</textarea></dd>
 | 
|---|
| 21 |         </dl>
 | 
|---|
| 22 |         </fieldset>
 | 
|---|
| 23 | 
 | 
|---|
| 24 |         <fieldset>
 | 
|---|
| 25 |                 <legend>{L_HTML_REPLACEMENT}</legend>
 | 
|---|
| 26 |                 <p>{L_HTML_REPLACEMENT_EXPLAIN}</p>
 | 
|---|
| 27 |         <dl>
 | 
|---|
| 28 |                 <dt><label for="bbcode_tpl">{L_EXAMPLES}</label><br /><br /><span>{L_HTML_REPLACEMENT_EXAMPLE}</span></dt>
 | 
|---|
| 29 |                 <dd><textarea id="bbcode_tpl" name="bbcode_tpl" cols="60" rows="8">{BBCODE_TPL}</textarea></dd>
 | 
|---|
| 30 |         </dl>
 | 
|---|
| 31 |         </fieldset>
 | 
|---|
| 32 | 
 | 
|---|
| 33 |         <fieldset>
 | 
|---|
| 34 |                 <legend>{L_BBCODE_HELPLINE}</legend>
 | 
|---|
| 35 |                 <p>{L_BBCODE_HELPLINE_EXPLAIN}</p>
 | 
|---|
| 36 |         <dl>
 | 
|---|
| 37 |                 <dt><label for="bbcode_helpline">{L_BBCODE_HELPLINE_TEXT}</label></dt>
 | 
|---|
| 38 |                 <dd><input type="text" id="bbcode_helpline" name="bbcode_helpline" size="60" maxlength="255" value="{BBCODE_HELPLINE}" /></dd>
 | 
|---|
| 39 |         </dl>
 | 
|---|
| 40 |         </fieldset>
 | 
|---|
| 41 | 
 | 
|---|
| 42 |         <fieldset>
 | 
|---|
| 43 |                 <legend>{L_SETTINGS}</legend>
 | 
|---|
| 44 |         <dl>
 | 
|---|
| 45 |                 <dt><label for="display_on_posting">{L_DISPLAY_ON_POSTING}</label></dt>
 | 
|---|
| 46 |                 <dd><input type="checkbox" class="radio" name="display_on_posting" id="display_on_posting" value="1"<!-- IF DISPLAY_ON_POSTING --> checked="checked"<!-- ENDIF --> /></dd>
 | 
|---|
| 47 |         </dl>
 | 
|---|
| 48 |         </fieldset>
 | 
|---|
| 49 | 
 | 
|---|
| 50 |         <fieldset class="submit-buttons">
 | 
|---|
| 51 |                 <legend>{L_SUBMIT}</legend>
 | 
|---|
| 52 |                 <input class="button1" type="submit" id="submit" name="submit" value="{L_SUBMIT}" /> 
 | 
|---|
| 53 |                 <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
 | 
|---|
| 54 |                 {S_FORM_TOKEN}
 | 
|---|
| 55 |         </fieldset>
 | 
|---|
| 56 |         
 | 
|---|
| 57 |         <br />
 | 
|---|
| 58 | 
 | 
|---|
| 59 |         <table cellspacing="1" id="down">
 | 
|---|
| 60 |         <thead>
 | 
|---|
| 61 |         <tr>
 | 
|---|
| 62 |                 <th colspan="2">{L_TOKENS}</th>
 | 
|---|
| 63 |         </tr>
 | 
|---|
| 64 |         <tr>
 | 
|---|
| 65 |                 <td class="row3" colspan="2">{L_TOKENS_EXPLAIN}</td>
 | 
|---|
| 66 |         </tr>
 | 
|---|
| 67 |         <tr>
 | 
|---|
| 68 |                 <th>{L_TOKEN}</th>
 | 
|---|
| 69 |                 <th>{L_TOKEN_DEFINITION}</th>
 | 
|---|
| 70 |         </tr>
 | 
|---|
| 71 |         </thead>
 | 
|---|
| 72 |         <tbody>
 | 
|---|
| 73 |         <!-- BEGIN token -->
 | 
|---|
| 74 |                 <tr valign="top">
 | 
|---|
| 75 |                         <td class="row1">{token.TOKEN}</td>
 | 
|---|
| 76 |                         <td class="row2">{token.EXPLAIN}</td>
 | 
|---|
| 77 |                 </tr>
 | 
|---|
| 78 |         <!-- END token -->
 | 
|---|
| 79 |         </tbody>
 | 
|---|
| 80 |         </table>
 | 
|---|
| 81 |         </form>
 | 
|---|
| 82 | 
 | 
|---|
| 83 | <!-- ELSE -->
 | 
|---|
| 84 | 
 | 
|---|
| 85 |         <h1>{L_ACP_BBCODES}</h1>
 | 
|---|
| 86 | 
 | 
|---|
| 87 |         <p>{L_ACP_BBCODES_EXPLAIN}</p>
 | 
|---|
| 88 |         
 | 
|---|
| 89 |         <form id="acp_bbcodes" method="post" action="{U_ACTION}">
 | 
|---|
| 90 |         <fieldset class="tabulated">
 | 
|---|
| 91 |         <legend>{L_ACP_BBCODES}</legend>
 | 
|---|
| 92 | 
 | 
|---|
| 93 |         <table cellspacing="1" id="down">
 | 
|---|
| 94 |         <thead>
 | 
|---|
| 95 |         <tr>
 | 
|---|
| 96 |                 <th>{L_BBCODE_TAG}</th>
 | 
|---|
| 97 |                 <th>{L_ACTION}</th>
 | 
|---|
| 98 |         </tr>
 | 
|---|
| 99 |         </thead>
 | 
|---|
| 100 |         <tbody>
 | 
|---|
| 101 |         <!-- BEGIN bbcodes -->
 | 
|---|
| 102 |                 <!-- IF bbcodes.S_ROW_COUNT is even --><tr class="row1"><!-- ELSE --><tr class="row2"><!-- ENDIF -->
 | 
|---|
| 103 |                         <td style="text-align: center;">{bbcodes.BBCODE_TAG}</td>
 | 
|---|
| 104 |                         <td style="text-align: right; width: 40px;"><a href="{bbcodes.U_EDIT}">{ICON_EDIT}</a> <a href="{bbcodes.U_DELETE}">{ICON_DELETE}</a></td>
 | 
|---|
| 105 |                 </tr>
 | 
|---|
| 106 |         <!-- BEGINELSE -->
 | 
|---|
| 107 |                 <tr class="row3">
 | 
|---|
| 108 |                         <td colspan="2">{L_ACP_NO_ITEMS}</td>
 | 
|---|
| 109 |                 </tr>
 | 
|---|
| 110 |         <!-- END bbcodes -->
 | 
|---|
| 111 |         </tbody>
 | 
|---|
| 112 |         </table>
 | 
|---|
| 113 | 
 | 
|---|
| 114 |         <p class="quick">
 | 
|---|
| 115 |                 <input class="button2" name="submit" type="submit" value="{L_ADD_BBCODE}" />
 | 
|---|
| 116 |         </p>
 | 
|---|
| 117 |         {S_FORM_TOKEN}
 | 
|---|
| 118 |         </fieldset>
 | 
|---|
| 119 | 
 | 
|---|
| 120 |         </form>
 | 
|---|
| 121 | 
 | 
|---|
| 122 | <!-- ENDIF -->
 | 
|---|
| 123 | 
 | 
|---|
| 124 | <!-- INCLUDE overall_footer.html -->
 | 
|---|