source: extensions/rv_gmaps/trunk/admin/admin_edit.tpl @ 9069

Last change on this file since 9069 was 9069, checked in by rvelices, 13 years ago

fix admin modification of coordinates (element_set become batch_manager)

  • Property svn:eol-style set to LF
File size: 2.0 KB
Line 
1
2<form>
3Set:
4<select onchange="document.location = this.options[this.selectedIndex].value;">
5  <optgroup label="Specials">
6    {html_options options=$specials selected=$specials_selected}
7  </optgroup>
8  <optgroup label="{'Albums'|@translate}">
9        {html_options options=$categories selected=$categories_selected}
10  </optgroup>
11  <!-- <optgroup label="{'Tags'|@translate}"></optgroup> -->
12</select>
13</form>
14
15<fieldset>
16  <legend>{'Display options'|@translate}</legend>
17  <p>{'photos per page'|@translate}:
18      <a href="{$U_DISPLAY}&amp;display=20">20</a>
19    | <a href="{$U_DISPLAY}&amp;display=50">50</a>
20    | <a href="{$U_DISPLAY}&amp;display=100">100</a>
21    | <a href="{$U_DISPLAY}&amp;display=all">{'all'|@translate}</a>
22  </p>
23</fieldset>
24
25<form action="" method="post">
26
27<fieldset>
28        <legend>{'Photos'|@translate}</legend>
29
30        {if !empty($navbar) }{include file='navigation_bar.tpl'}{/if}
31  {if not empty($thumbnails)}
32        <ul class="thumbnails">
33                {foreach from=$thumbnails item=thumbnail}
34                <li><span class="wrap1">
35                        <label>
36                                <span class="wrap2"><span>
37                                        <img src="{$thumbnail.U_TN}" alt="{$thumbnail.file}" title="{$thumbnail.TITLE}" class="thumbnail" />
38                                </span></span>
39                                <input type="checkbox" name="selection[]" value="{$thumbnail.id}" />
40                        </label>
41
42                        <span class="thumbLegend">
43                        {if isset($thumbnail.U_MAP)}
44                        <a href="{$thumbnail.U_MAP}" target="_blank">{$thumbnail.lat},{$thumbnail.lon}</a>
45                        {/if}
46                        </span>
47
48                        </span>
49                </li>
50                {/foreach}
51        </ul>
52        {/if}
53</fieldset>
54
55
56<fieldset>
57  <legend>{'Form'|@translate}</legend>
58
59  <label>Latitude (-90=S to 90=N)
60    <input type="text" size="8" name="lat" />
61  </label>
62  <label>Longitude (-180=E to 180=W)
63    <input type="text" size="9" name="lon" />
64  </label>
65  <p>
66    {'target'|@translate}
67    <label><input type="radio" name="target" value="all" /> {'all'|@translate}</label>
68    <label><input type="radio" name="target" value="selection" checked="checked" /> {'selection'|@translate}</label>
69  </p>
70
71  <p><input class="submit" type="submit" value="{'Submit'|@translate}" name="submit" /></p>
72</fieldset>
73
74</form>
Note: See TracBrowser for help on using the repository browser.