source: extensions/akBookStyle/trunk/template/admin.tpl @ 10853

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

really compatible 2.2

File size: 1.6 KB
Line 
1{html_head}
2<link rel="stylesheet" type="text/css" href="{$AK_PLUGIN_CSS}/admin.css">
3{/html_head}
4
5<div class="titrePage">
6  <h2>{'ak Book Style'|translate}</h2>
7</div>
8
9<form method="post" action="" class="general">
10<fieldset>
11  <legend>{'Main configuration'|translate}</legend>
12  <p class="field">
13    <label>{'Applicable categorie(s)'|translate}
14      <select name="ak_categories[]" multiple="multiple" size="{$ak_categories|@count|@max:3}">
15        <option value=""></option>
16        {html_options options=$ALL_CATEGORIES selected=$AK_CATEGORIES}
17      </select>
18    </label>
19  </p>
20  <p class="field">
21    <label>{'Number of thumbnails per page'|translate}
22      <input type="text" name="ak_by_page" value="{$AK_BY_PAGE}">
23    </label>
24  </p>
25  <p class="field">
26    <label>{'Number of column'|translate}
27      <input type="text" name="ak_by_line" value="{$AK_BY_LINE}">({'or number of lines for Top/Bottom'|@translate})
28    </label>
29  </p>
30  <p class="field">
31    <label>{'Thumbnail size'|translate}
32      <input type="text" name="ak_thumbnail_size" value="{$AK_THUMBNAIL_SIZE}">
33    </label>
34  </p>
35  <p class="field">
36    {'Event to show medium picture.'|translate}
37      {html_radios name='ak_mouse_event' values=$AK_AVAILABLE_EVENTS output=$AK_EVENTS_LABELS|translate selected=$AK_MOUSE_EVENT}
38  </p>
39  <p class="field">
40    {'Thumbnails location'|translate}
41      {html_radios name="ak_thumbnails_loc" values=$AK_THUMBNAILS_LOCATIONS_KEYS output=$AK_THUMBNAILS_LOCATIONS_VALUES|translate selected="$AK_THUMBNAILS_LOC"}
42  </p>
43</fieldset>
44
45<p><input class="submit" type="submit" name="submit" value="{'Submit'|translate}"></p>
46</form>
Note: See TracBrowser for help on using the repository browser.