-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuserHome.tpl
30 lines (30 loc) · 875 Bytes
/
userHome.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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Welcome {{name}}</title>
{{>head}}
</head>
<body>
{{>nav}}
<div class="authSeriesList">
<h3>Available Series</h3>
{{#series}}
<a href="seriesSeasonListing.php?series={{seriesId}}">{{seriesName}}</a>
({{unwatchedCount}} unwatched episode{{pluralized}})
<br />
{{/series}}
{{#noSeries}}
No available series
{{/noSeries}}
</div>
{{#admin}}
<p><a href="listAllSeries.php">View all series</a></p>
{{/admin}}
{{#hasRoku}}
<p>Roku XML file:
<a href="/videoViewer{{rokuUrl}}">{{rokuUrl}}</a>
</p>
{{/hasRoku}}
</body>
</html>