-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication.html
76 lines (67 loc) · 3.02 KB
/
application.html
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<div class="view smoothScrollY view-centered padded-left padded-right">
<form>
<div class="selectContainer">
<select is="emby-select" class="selectMediaType" label="${MediaType}ok">
<option value="Video">${Video}</option>
<option value="Game">${Game}</option>
</select>
</div>
<div class="inputContainer">
<input is="emby-input" type="text" class="txtPath" label="${PlayerPath}" required />
</div>
<div class="checkboxList mediaTypeField" data-mediatype="Video">
<h3>${EnableFor}</h3>
<label>
<input type="checkbox" is="emby-checkbox" class="videoType" data-type="file" />
<span>${VideoFiles}</span>
</label>
<label>
<input type="checkbox" is="emby-checkbox" class="videoType" data-type="stream" />
<span>${InternetStreams}</span>
</label>
<label>
<input type="checkbox" is="emby-checkbox" class="videoType" data-type="bluray" />
<span>Blu-ray</span>
</label>
<label>
<input type="checkbox" is="emby-checkbox" class="videoType" data-type="dvd" />
<span>Dvd</span>
</label>
<label>
<input type="checkbox" is="emby-checkbox" class="videoType" data-type="iso" />
<span>ISO</span>
</label>
</div>
<div class="mediaTypeField" data-mediatype="Game">
<div class="selectContainer">
<select is="emby-select" class="selectGameSystem" label="${GameSystem}"></select>
</div>
</div>
<div class="mediaTypeField PCGame hide" data-mediatype="PC">
<div class="selectContainer">
<select is="emby-select" class="selectPCGame" label="${PCGame}"></select>
</div>
</div>
<div class="mediaTypeField dosGame hide" data-mediatype="DOS">
<div class="selectContainer">
<select is="emby-select" class="selectDosGame" label="${DosGame}"></select>
</div>
</div>
<div class="checkboxList mediaTypeField" data-mediatype="Video">
<h3>${AdditionalFilters}</h3>
<label>
<input type="checkbox" is="emby-checkbox" class="videoType" data-type="3d" />
<span>3D</span>
</label>
</div>
<br />
<div class="inputContainer">
<textarea is="emby-textarea" class="txtArguments" label="${CommandLineArguments}" data-keyboard="false"></textarea>
<div class="fieldDescription">${ArgumentsHelp}</div>
<div class="fieldDescription">${TokenPath}</div>
<div class="fieldDescription mediaTypeField" data-mediatype="Video">${TokenStartPosMs}</div>
</div>
<br />
<button is="emby-button" type="submit" class="raised block btnSave hide"><span>${Save}</span></button>
</form>
</div>