blob: 7ac32416fb195d74b04b827790ba1e0a715b3950 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
<ste:load name="master.html" />
<ste:load name="instant_select.tpl" />
<ste:block name="content">
<ste:default_error />
<ste:default_success />
<div class="dualcolumns">
<div class="column_left">
<h2><ste:get_translation for="new_section" /></h2>
<form action="$rel_path_to_root/backend/design/sections" method="post" accept-charset="UTF-8">
<p>
<strong><ste:get_translation for="section_name" />:</strong><br />
<input type="text" name="section_name" />
</p>
<p>
<strong><ste:get_translation for="template" />:</strong><br />
<ste:instant_select name="template" array="templates" />
</p>
<p><input type="submit" name="new_section" /></p>
</form>
</div>
<div class="column_main">
<form action="$rel_path_to_root/backend/design/sections" method="post" accept-charset="UTF-8">
<table class="listtab fullwidth">
<thead>
<tr>
<th> </th>
<th><ste:get_translation for="section" /></th>
<th><ste:get_translation for="section_title" /></th>
<th><ste:get_translation for="section_is_default" /></th>
<th><ste:get_translation for="template" /></th>
<th><ste:get_translation for="styles" /></th>
</tr>
</thead>
<tbody>
<ste:foreach array="sections" value="section">
<tr>
<td><input type="radio" name="section_select" value="$section[name]" /></td>
<td><ste:escape>$section[name]</ste:escape></td>
<td>
<ste:foreach array="section[title]" key="langcode" value="title" counter="ti">
?{~{$ti|eq|0}||<br />}
($langcode) <ste:escape>$title</ste:escape>
</ste:foreach>
</td>
<td>?{$section[default]|<strong><ste:get_translation for="yes" /></strong>|<ste:get_translation for="no" />}</td>
<td><a href="$rel_path_to_root/backend/design/templates/<ste:escape>$section[template]</ste:escape>"><ste:escape>$section[template]</ste:escape></a></td>
<td>
<ste:foreach array="section[styles]" value="style" counter="si">
?{~{$si|eq|0}||<br />}
<a href="$rel_path_to_root/backend/design/sections?rmstyle=${style}&rmfrom=${section[name]}"><img src="$rel_path_to_root/ratatoeskr/cms_style/images/delete.png" alt="<ste:get_translation for='remove' />" /></a> <a href="$rel_path_to_root/backend/design/styles/$style">$style</a>
</ste:foreach>
</td>
</tr>
</ste:foreach>
</tbody>
</table>
<div>
<ste:default_delete_yesno />
|
<input type="submit" name="make_default" value="<ste:get_translation for='make_default' />" />
|
<input type="submit" name="set_template" value="<ste:get_translation for='set_template' />" /> <ste:instant_select name="set_template_to" array="templates" />
|
<input type="submit" name="add_style" value="<ste:get_translation for='add_style' />" /> <ste:instant_select name="style_to_add" array="styles" />
|
<input type="submit" name="set_title" value="<ste:get_translation for='set_title' />" /> <ste:instant_select name="set_title_lang" array="all_langcodes" /> <input type="text" name="set_title_text" />
</div>
</form>
</div>
</div>
<div class="dualcolumns_stop"></div>
</ste:block>
|