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

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

plugin in dev

File size: 1.4 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_nochange'|@translate}</option>
18        <option value="NULL">{'iconset_nothing'|@translate}</option>
19        {foreach from=$list_set item=ls}
20        <option value="{$ls.FILE}">{$ls.TEXTE}</option>
21        {/foreach}
22      </select>
23      </div>
24    </div> <!-- themeActions -->
25  </div>
26{/foreach}
27</div> <!-- themeBoxes -->
28  <input name="envoi_config" type="hidden" value="iconset" />
29  <input type="hidden" name="pwg_token" value="{$PWG_TOKEN}">
30  <input type="submit" name="button2" id="button2" value="{'iconset_send'|@translate}" />
31</form>
32</fieldset>
33
34<fieldset>
35<legend>{'iconset_All_Icons'|@translate}</legend>
36<div class="iconBoxes">
37{foreach from=$all_icons item=icons}
38  <div class="iconBox">
39    <div class="iconName">{$icons.name}</div>
40    <div class="iconShot"><img src="{$icons.png}" alt=""></div>
41  </div>
42{/foreach}
43</div> <!-- themeBoxes -->
44</fieldset>
45</div> <!-- themesContent -->
Note: See TracBrowser for help on using the repository browser.