source: extensions/Icons_Set/template/admin.tpl @ 10299

Last change on this file since 10299 was 10299, checked in by flop25, 13 years ago

the background code of admin page is ok

File size: 1.3 KB
Line 
1<div class="titrePage">
2  <h2>{'Installed Themes'|@translate}</h2>
3</div>
4
5<div id="themesContent">
6<fieldset>
7<legend>{'iconset_All_Themes'|@translate}</legend>
8<form action="" method="post" name="externe">
9<div class="themeBoxes">
10{foreach from=$all_themes item=theme}
11  <div class="themeBox">
12    <div class="themeName">{$theme.name}</div>
13    <div class="themeShot"><img src="{$theme.screenshot}" alt="screenshot"></div>
14    <div class="themeActions">
15      <div>
16      <select name="set">
17        <option value="NULL">{'iconset_nothing'|@translate}</option>
18        {html_options output=$output values=$values selected=$theme.icon}
19      </select>
20      </div>
21    </div> <!-- themeActions -->
22  </div>
23{/foreach}
24</div> <!-- themeBoxes -->
25  <input name="envoi_config" type="hidden" value="iconset" />
26  <input type="hidden" name="pwg_token" value="{$PWG_TOKEN}">
27  <input type="submit" name="button2" id="button2" value="{'iconset_send'|@translate}" />
28</form>
29</fieldset>
30
31<fieldset>
32<legend>{'iconset_All_Icons'|@translate}</legend>
33<div class="iconBoxes">
34{foreach from=$all_icons item=icons}
35  <div class="iconBox">
36    <div class="iconName">{$icons.name}</div>
37    <div class="iconShot"><img src="{$icons.png}" alt=""></div>
38  </div>
39{/foreach}
40</div> <!-- themeBoxes -->
41</fieldset>
42</div> <!-- themesContent -->
Note: See TracBrowser for help on using the repository browser.