[18997] | 1 | <div id="content"> |
---|
| 2 | <div class="titrePage"> |
---|
| 3 | <h2>{'Customize'|@translate} Evil Blog</h2> |
---|
| 4 | </div> |
---|
| 5 | <form name="config_form" action="#" method="POST"> |
---|
| 6 | <input type="checkbox" name="modified"> |
---|
| 7 | <fieldset> |
---|
| 8 | <table> |
---|
| 9 | <tr> |
---|
| 10 | <td><b>{'blog_name'|@translate}</b></td> |
---|
| 11 | <td><input type="text" name="blog_name" value="{$blog_name}" onChange="document.config_form.modified.checked=true;"></td> |
---|
| 12 | </tr> |
---|
| 13 | <tr> |
---|
| 14 | <td><b>{'blog_description'|@translate}</b></td> |
---|
| 15 | <td><input type="text" name="blog_description" value="{$blog_description}" onChange="document.config_form.modified.checked=true;"></td> |
---|
| 16 | </tr> |
---|
| 17 | <tr> |
---|
| 18 | <td><b>{'posts_per_pages'|@translate}</b></td> |
---|
| 19 | <td><input type="text" name="posts_per_page" value="{$posts_per_page}" onChange="document.config_form.modified.checked=true;"></td> |
---|
| 20 | </tr> |
---|
| 21 | <tr> |
---|
| 22 | <td><b>{'show_on_main_page'|@translate}</b></td> |
---|
| 23 | <td><input type="checkbox" name="show_on_main_page" {if isset($show_on_main_page) and $show_on_main_page}checked="checked"{/if} onChange="document.config_form.modified.checked=true;"></td> |
---|
| 24 | </tr> |
---|
[19304] | 25 | <tr> |
---|
| 26 | <td><b>{'show_on_category_page'|@translate}</b></td> |
---|
| 27 | <td><input type="checkbox" name="show_on_category_page" {if isset($show_on_category_page) and $show_on_category_page}checked="checked"{/if} onChange="document.config_form.modified.checked=true;"></td> |
---|
| 28 | </tr> |
---|
[18997] | 29 | <tr><td colspan="2"> |
---|
| 30 | <fieldset><legend>{'post_appearance'|@translate}</legend> |
---|
| 31 | <table> |
---|
| 32 | <tr> |
---|
| 33 | <td><b>{'show_number'|@translate}</b></td> |
---|
| 34 | <td><input type="checkbox" name="show_number" {if isset($show_number) and $show_number}checked="checked"{/if} onChange="document.config_form.modified.checked=true;"></td> |
---|
| 35 | </tr> |
---|
| 36 | <tr> |
---|
| 37 | <td><b>{'show_date'|@translate}</b></td> |
---|
| 38 | <td><input type="checkbox" name="show_date" {if isset($show_date) and $show_date}checked="checked"{/if} onChange="document.config_form.modified.checked=true;"></td> |
---|
| 39 | </tr> |
---|
[19304] | 40 | <tr> |
---|
[18997] | 41 | <td><b>{'date_format'|@translate}</b></td> |
---|
| 42 | <td> |
---|
| 43 | <input type="text" name="date_format" value="{$date_format}" onChange="document.config_form.modified.checked=true;"> |
---|
| 44 | <a href='http://php.net/manual/ru/function.date.php'>?</a> |
---|
| 45 | </td> |
---|
| 46 | </tr> |
---|
| 47 | </table> |
---|
| 48 | </fieldset> |
---|
| 49 | </td></tr> |
---|
| 50 | <tr> |
---|
| 51 | <td><input type="submit" name="submit_config" value="{'Submit'|@translate}"></td> |
---|
| 52 | </tr> |
---|
| 53 | </table> |
---|
| 54 | </fieldset> |
---|
| 55 | </form> |
---|
| 56 | </div> |
---|