forked from d-matt/piwigo-jplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.tpl
29 lines (28 loc) · 906 Bytes
/
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
<!-- Show the title of the plugin -->
<div class="titlePage">
<h2>jplayer</h2>
</div>
<form method="post" action="" class="properties">
<fieldset>
<legend>jplayer preferences</legend>
<ul>
<li>
<label>Skin: </label>
<select name="skin">
{html_options options=$AVAILABLE_SKINS selected=$SELECTED_SKIN}
</select>
</li>
<li>
<label>Autoplay:
<input type="checkbox" name="autoplay" id="autoplay" value="true" {if $AUTOPLAY eq 'true'}checked="checked"{/if}/>
</label>
</li>
<li>
<label>Display thumbnail as poster (piwigo>2.4):
<input type="checkbox" name="poster" id="poster" value="true" {if $POSTER eq 'true'}checked="checked"{/if}/>
</label>
</li>
</ul>
<input class="submit" type="submit" value="{'Submit'|@translate}" name="submit"/>
</fieldset>
</form>