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

Last change on this file since 17434 was 17434, checked in by mistic100, 12 years ago

bug with albums with close names
bug with apostrophe in albums name and description

File size: 2.1 KB
RevLine 
[17314]1{include file='include/colorbox.inc.tpl'}
2{include file='include/add_album.inc.tpl'}
3
[17225]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>
[17314]15  <legend>{'Select albums to import'|@translate}</legend>
[17225]16 
17  <select name="categories[]" class="categoryList" multiple="multiple" size="20">
18    {$TREE}
19  </select>
20 
[17314]21  <b>{'Nb albums'|@translate}</b>: {$nb_categories}<br>
22  <b>{'Nb photos'|@translate}</b>: {$nb_pictures}<br>
23 
[17225]24  <br>
[17314]25  <a href="{$RESET_LINK}" onClick="return confirm('{'Are you sure?'|@translate}');">{'Reset'|@translate}</a>
[17225]26</fieldset>
27
28<fieldset>
29  <legend>{'Configuration'|@translate}</legend>
30 
[17314]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>
[17434]37      {html_options options=$category_parent_options}
[17314]38    </select>
39    {'... or '|@translate}<a href="#" class="addAlbumOpen" title="{'create a new album'|@translate}">{'create a new album'|@translate}</a>
40  </p>
41   
[17225]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">
[17314]53    <input type="submit" value="{'Begin transfer'|@translate}">   
[17225]54  </p>
55</form>
Note: See TracBrowser for help on using the repository browser.