source: extensions/pbase2piwigo/admin/template/import.config.tpl @ 17314

Last change on this file since 17314 was 17314, checked in by mistic100, 12 years ago
  • many small improvements
  • protect "generic" functions
  • complete localization
File size: 2.1 KB
Line 
1{include file='include/colorbox.inc.tpl'}
2{include file='include/add_album.inc.tpl'}
3
4{footer_script require='jquery.ui.resizable'}{literal}
5jQuery(".categoryList").resizable({
6  handles: "s,e,se",
7  animate: true,
8  autoHide: true,
9  ghost: true
10});
11{/literal}{/footer_script}
12
13<form action="{$F_ACTION}" method="post">
14<fieldset>
15  <legend>{'Select albums to import'|@translate}</legend>
16 
17  <select name="categories[]" class="categoryList" multiple="multiple" size="20">
18    {$TREE}
19  </select>
20 
21  <b>{'Nb albums'|@translate}</b>: {$nb_categories}<br>
22  <b>{'Nb photos'|@translate}</b>: {$nb_pictures}<br>
23 
24  <br>
25  <a href="{$RESET_LINK}" onClick="return confirm('{'Are you sure?'|@translate}');">{'Reset'|@translate}</a>
26</fieldset>
27
28<fieldset>
29  <legend>{'Configuration'|@translate}</legend>
30 
31  <p><label><input type="checkbox" name="recursive" value="1" checked="checked"> <b>{'Recursive'|@translate}</b></label></p>
32 
33  <p id="albumSelectWrapper">
34    <b>{'Import in this album'|@translate}:</b>
35    <select style="width:400px" name="parent_category" id="albumSelect" size="1">
36      <option value="0">------------</option>
37      {html_options options=$associate_options}
38    </select>
39    {'... or '|@translate}<a href="#" class="addAlbumOpen" title="{'create a new album'|@translate}">{'create a new album'|@translate}</a>
40  </p>
41   
42  <p>
43    <b>{'Fill these fields from pBase datas'|@translate}:</b>
44    <label><input type="checkbox" name="fills[]" value="fill_name" checked="checked"> {'Photo name'|@translate}</label>
45    <label><input type="checkbox" name="fills[]" value="fill_author" checked="checked"> {'Author'|@translate}</label>
46    <label><input type="checkbox" name="fills[]" value="fill_tags" checked="checked"> {'Tags'|@translate}</label>
47    <label><input type="checkbox" name="fills[]" value="fill_taken" checked="checked"> {'Creation date'|@translate}</label>
48    <label><input type="checkbox" name="fills[]" value="fill_comment" checked="checked"> {'Description'|@translate}</label>
49  </p>
50</fieldset>
51
52  <p class="bottomButtons">
53    <input type="submit" value="{'Begin transfer'|@translate}">   
54  </p>
55</form>
Note: See TracBrowser for help on using the repository browser.