-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathViewVideoDetails.tpl
62 lines (62 loc) · 2.2 KB
/
ViewVideoDetails.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>View Video Details - {{video}}</title>
<!--default head settings-->
{{>head}}
<script type="text/javascript" src="http://html5.kaltura.org/js" > </script>
</head>
<body>
<!--default top navigation-->
{{>nav}}
<table border="1" width="100%">
<tr>
<td colspan="2" align="center">
<video id="video" style="width:640px;height:360px;"
poster="http://www.ipoots.com/static/images/video-placeholder-big.jpg">
<source type="video/ogg" src="{{oggPath}}" />
<source type="video/h264" src="{{mp4Path}}" />
</video>
</td>
</tr>
<tr>
<th>Series:</th>
<td>{{seriesName}}</td>
</tr>
<tr>
<th>Season:</th>
<td>{{season}}</td>
</tr>
<tr>
<th>Episode:</th>
<td>{{episodeNumber}}</td>
</tr>
<tr>
<th>Air Date:</th>
<td>{{airDate}}</td>
</tr>
<tr>
<th>Video Details:</th>
<td>{{details}}</td>
</tr>
<tr>
<th>Notes:</th>
<td>{{notes}}</td>
</tr>
<tr>
<td colspan="2">
<div style="display:block;float:left;text-align: center;width:33%;">
<a href="createSeries.php?videoId={{videoId}}">Create a Series</a>
</div>
<div style="display:block;float:left;text-align: center;width:33%;">
<a href="createAlias.php?videoId={{videoId}}">Create an Alias</a>
</div>
<div style="display:block;float:left;text-align: center;width:33%;">
<a href="editVideo.php?id={{videoId}}">Edit video</a>
</div>
</td>
</tr>
</table>
</body>
</html>