source: extensions/Random_Header/admin/rh_admin.tpl @ 7358

Last change on this file since 7358 was 7358, checked in by repie38, 14 years ago

moved conf file to db (_config table)
small fix on admin panel
new maintain procedures including upgrade from 2.1 or earlier (get conf from file and delete it)
deleted themes conf is no more stocked

File size: 1.1 KB
Line 
1{html_head}
2<link rel="stylesheet" type="text/css" href="plugins/random_header/admin/rh_admin.css">
3{/html_head}
4
5<div class="titrePage"><h2>Random Header {$RH_VERSION}</h2></div>
6<p>{'rh_description'|@translate}</p>
7<p><i>{'rh_aide'|@translate}</i></p>
8<form method="post" action="" class="properties">
9 
10 
11<div id="themesContent">
12{if $rh_vierge!=0}
13        <fieldset>
14                <legend>{'rh_active_conf'|@translate}</legend>
15               
16                <div class="themeBoxes">
17                {foreach from=$rhthemes item=i}
18                        {if $i.CATSELECTED!=0}
19                                {include file="$RH_confpanel"}
20                        {/if}
21                {/foreach}
22                </div> <!-- themeBoxes -->
23        </fieldset>
24{/if}   
25       
26        <fieldset>
27                <legend>{'rh_inactive_conf'|@translate} : </legend>
28               
29                <div class="themeBoxes">
30                {foreach from=$rhthemes item=i}
31                        {if $i.CATSELECTED==0}
32                                {include file="$RH_confpanel"}
33                        {/if}
34                {/foreach}
35                </div> <!-- themeBoxes -->
36        </fieldset>
37       
38</div> <!-- themesContent -->
39 
40<div id="fade" class="black_overlay"></div> 
41 
42<div style="text-align:center;clear:left"><input class="submit" type="submit" value="{'rh_submit'|@translate}" name="submit" ></div>
43</form>
Note: See TracBrowser for help on using the repository browser.