-
Notifications
You must be signed in to change notification settings - Fork 7
/
admin.tpl
42 lines (40 loc) · 1.55 KB
/
admin.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<h2>{$TITLE} › {{$header_text}|@translate} {$TABSHEET_TITLE}</h2>
<fieldset>
<legend>{{$legend_text}|@translate}</legend>
<table align="left">
<tr>
<td id="albumThumbnail" style="vertical-align:top">
{$TN_SRC}
</td>
</tr>
<tr>
<td style="vertical-align:center">
<p style="text-align:left; margin-top:0;">
<strong>{'CURR_PHYS_ALBUM'|@translate}</strong> {$storage_category}<br>
<strong>{{$dir_text}|@translate}</strong> {$current_path}<br>
</td>
</tr>
</table>
</fieldset>
<form id="ppmove" method="post" action="" enctype="multipart/form-data">
<fieldset>
<legend>
{'DEST_ALBUM'|@translate}
<a class="icon-help-circled" title="{{$help_text}|@translate}"></a>
</legend>
<select data-selectize="categories" data-default="" style="width:500px" name="cat_id" placeholder="{'DEST_ALBUM_SELECT_BATCH'|@translate}">
{html_options options=$categories selected=$categories_selected}
</select>
</fieldset>
{if $item_type == 'album'}
<fieldset>
<legend>{'OR'|@translate}</legend>
<label><input type="checkbox" name="root_album" value="1" /> {'ROOT_ALBUM_CHECKBOX'|@translate}</label>
<a class="icon-help-circled" title="{{$root_help}|@translate}"></a>
</fieldset>
{/if}
<fieldset>
<label><input type="checkbox" name="test_mode" value="1" checked /> {'TEST_MODE_DESCR'|@translate}</label>
<p style="text-align:left"><input class="submit" type="submit" value="{'MOVE_BUTTON'|@translate}" name="move_item"></p>
</fieldset>
</form>