source: extensions/rv_gmaps/trunk/admin/admin_sync.tpl @ 15839

Last change on this file since 15839 was 15839, checked in by rvelices, 12 years ago

gmaps templates

  • Property svn:eol-style set to LF
File size: 1.5 KB
Line 
1<p>Synchronization of EXIF gps metadata information with the database.</p>
2
3{if isset($metadata_result)}
4<h3>{'Metadata synchronization results'|@translate}</h3>
5<ul>
6        <li>{$metadata_result.NB_ELEMENTS_DONE} {'photos updated in the database'|@translate}</li>
7        <li>{$metadata_result.NB_ELEMENTS_CANDIDATES} {'photos candidates for metadata synchronization'|@translate}</li>
8        <li>{$metadata_result.NB_ERRORS} {'errors during synchronization'|@translate}</li>
9</ul>
10{/if}
11
12{if not empty($sync_errors)}
13<h3>{'Error list'|@translate}</h3>
14<div class="errors">
15<ul>
16  {foreach from=$sync_error item=error}
17        <li>{$error}</li>
18        {/foreach}
19</ul>
20</div>
21{/if}
22
23<form action="" method="post" id="update">
24
25  <fieldset id="syncOptions">
26    <legend>synchronization options</legend>
27    <ul>
28      <li><label><input type="checkbox" name="simulate" value="1" checked="checked" /> {'only perform a simulation (no change in database will be made)'|@translate}</label></li>
29    </ul>
30  </fieldset>
31
32  <fieldset id="catSubset">
33    <legend>{'reduce to single existing albums'|@translate}</legend>
34    <ul>
35    <li>
36    <select class="categoryList" name="cat_id" size="10">
37        {html_options options=$categories selected=$categories_selected}
38    </select>
39    </li>
40
41    <li><label><input type="checkbox" name="subcats_included" value="1" {$SUBCATS_INCLUDED_CHECKED} /> {'Search in sub-albums'|@translate}</label></li>
42    </ul>
43  </fieldset>
44
45  <p>
46    <input type="submit" value="{'Submit'|@translate}" name="submit">
47  </p>
48</form>
Note: See TracBrowser for help on using the repository browser.