|
Revision 3447, 1.4 KB
(checked in by rvelices, 4 years ago)
|
|
- added RV Map & Earth extension
|
-
Property svn:eol-style set to
LF
|
| Line | |
|---|
| 1 | <p>Synchronization of EXIF gps metadata information with the database.</p> |
|---|
| 2 | |
|---|
| 3 | {if isset($metadata_result)} |
|---|
| 4 | <h3>{'update_result_metadata'|@translate}</h3> |
|---|
| 5 | <ul> |
|---|
| 6 | <li>{$metadata_result.NB_ELEMENTS_DONE} {'update_nb_elements_metadata_sync'|@translate}</li> |
|---|
| 7 | <li>{$metadata_result.NB_ELEMENTS_CANDIDATES} {'update_nb_elements_metadata_available'|@translate}</li> |
|---|
| 8 | <li>{$metadata_result.NB_ERRORS} {'update_nb_errors'|@translate}</li> |
|---|
| 9 | </ul> |
|---|
| 10 | {/if} |
|---|
| 11 | |
|---|
| 12 | {if not empty($sync_errors)} |
|---|
| 13 | <h3>{'update_error_list_title'|@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" {$TAG_INPUT_ENABLED} /> {'update_simulate'|@translate}</label></li> |
|---|
| 29 | </ul> |
|---|
| 30 | </fieldset> |
|---|
| 31 | |
|---|
| 32 | <fieldset id="catSubset"> |
|---|
| 33 | <legend>{'update_cats_subset'|@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_subcats_included'|@translate}</label></li> |
|---|
| 42 | </ul> |
|---|
| 43 | </fieldset> |
|---|
| 44 | |
|---|
| 45 | <p> |
|---|
| 46 | <input class="submit" type="submit" value="{'Submit'|@translate}" name="submit" /> |
|---|
| 47 | </p> |
|---|
| 48 | </form> |
|---|