-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCreateSeries.tpl
28 lines (28 loc) · 1020 Bytes
/
CreateSeries.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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Create New Series</title>
<!--default head settings-->
{{>head}}
</head>
<body>
<!--default top navigation-->
{{>nav}}
<h3>The TVDB suggests these series for that video:</h3>
<ul>
{{#seriesOpt}}
<li>
<img src="temp/{{seriesId}}.jpg" /><br clear="all" />
<a href="{{{TVDBUrl}}}" target="_BLANK">{{name}}</a><br />
<a href="javascript:$('#seriesId').val({{seriesId}});
$('#hiddenform').submit();">Select</a>
</li>
{{/seriesOpt}}
</ul>
<form method="POST" id="hiddenform" action="createSeries.php">
<input type="hidden" name="seriesId" id="seriesId" value="" />
<input type="hidden" name="videoId" id="videoId" value="{{videoId}}" />
</form>
</body>
</html>