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