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

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

Make processed physical albums private

File size: 1.3 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</ul>
32</fieldset>
33
34<p class="formButtons">
35  <input type="hidden" name="pwg_token" value="{$PWG_TOKEN}">
36  <input type="submit" name="submit" value="{'Save Settings'|@translate}">
37  <input type="submit" name="convert" value="{'Convert now'|@translate}">
38</p>
39</form>
Note: See TracBrowser for help on using the repository browser.