source: extensions/physical2virtual/template/admin.tpl @ 27164

Last change on this file since 27164 was 27164, checked in by JanisV, 10 years ago

Set thumbnails for new virtual albums
Make physical albums private
Processing folder structure

File size: 1.5 KB
Line 
1<div class="titrePage">
2<h2>physical2virtual</h2>
3</div>
4
5<form action="" method="post" class="properties">
6
7<fieldset id="physical2virtual">
8<legend>{'Configuration'|@translate}</legend>
9<ul>
10  <li>
11    <label for="parent_cat">
12      <b>{'Create new virtual albums into'|@translate}</b>
13    </label>
14    <select class="categoryDropDown" id="parent_cat" name="parent_cat">
15      <option value="0">------------</option>
16      {html_options options=$category_parent_options selected=$category_parent_options_selected}
17    </select>
18  </li>
19  <li>
20    <input type="checkbox" id="lock_physical" name="lock_physical"{if $physical2virtual.lock_physical} checked="checked"{/if}>
21    <label for="lock_physical">
22      <b>{'Lock physical albums after converting'|@translate}</b>
23    </label>
24  </li>
25  <li>
26    <input type="checkbox" id="private_physical" name="private_physical"{if $physical2virtual.private_physical} checked="checked"{/if}>
27    <label for="private_physical">
28      <b>{'Make physical albums private after converting'|@translate}</b>
29    </label>
30  </li>
31  <li>
32    <input type="checkbox" id="store_structure" name="store_structure"{if $physical2virtual.store_structure} checked="checked"{/if}>
33    <label for="store_structure">
34      <b>{'Store folder structure'|@translate}</b>
35    </label>
36  </li>
37</ul>
38</fieldset>
39
40<p class="formButtons">
41  <input type="hidden" name="pwg_token" value="{$PWG_TOKEN}">
42  <input type="submit" name="submit" value="{'Save Settings'|@translate}">
43  <input type="submit" name="convert" value="{'Convert now'|@translate}">
44</p>
45</form>
Note: See TracBrowser for help on using the repository browser.