blob: 784fc565714e46f5dacc4553020d0cbb65fc8f4c (
plain)
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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=<%! ISO-8859-1 !%>" />
<title>VDRAdmin-AM - <%! Rename Recording !%></title>
<link href="style.css" rel="stylesheet" media="screen" type="text/css" />
<tmpl_if usercss>
<link href="user.css" rel="stylesheet" media="screen" type="text/css" />
</tmpl_if>
<script type="text/javascript" language="JavaScript1.2" src="library.js"></script>
</head>
<body id="rec_edit">
<form action="<tmpl_var url>" method="get" name="form">
<table width="100%" border="0" cellspacing="0" cellpadding="0" id="heading">
<tr>
<td class="col_title">
<h1><%! Rename Recording !%></h1>
</td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0" id="content" class="group">
<tr class="row_odd">
<td class="col_label"><h5><%! Original Name of Recording: !%></h5></td>
<td class="col_value"><tmpl_var title></td>
</tr>
<tr class="row_even">
<td class="col_label"><h5><%! New Name of Recording: !%></h5></td>
<td class="col_value"><input type="text" name="nn" value="<tmpl_var title>" size="55" /></td>
</tr>
<tr class="row_odd">
<td class="col_label"><h5><%! Subtitle: !%></h5></td>
<td class="col_value"><tmpl_if subtitle><tmpl_var subtitle></tmpl_if></td>
</tr>
<tr class="row_even">
<td class="col_label" valign="top"><h5><%! Summary: !%></h5></td>
<td class="col_value"><tmpl_var text></td>
</tr>
</table>
<div id="buttons">
<input type="submit" class="submit" name="save" value="<%! Rename !%>" />
<input type="submit" class="submit" name="exit" value="<%! Cancel !%>" />
</div>
<input type="hidden" name="aktion" value="rec_rename" />
<input type="hidden" name="id" value="<tmpl_var id>" />
<tmpl_if referer>
<input type="hidden" name="referer" value="<tmpl_var referer>" />
</tmpl_if>
</form>
</body>
</html>
|