summaryrefslogtreecommitdiff
path: root/template/default/rec_edit.html
blob: eb9cb3d69ec91e9fc426c0c55553479eac51c87f (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
56
57
58
59
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html id="scroller">

<head>
	<meta http-equiv="content-type" content="text/html;charset=<?% gettext('ISO-8859-1') %?>" />
	<title>VDRAdmin-AM - <?% gettext('Rename Recording') %?></title>
	<link href="style.css" rel="stylesheet" media="screen" type="text/css" />
	<?% IF usercss %?>
		<link href="user.css" rel="stylesheet" media="screen" type="text/css" />
	<?% END %?>
	<script type="text/javascript" language="JavaScript1.2" src="library.js"></script>
</head>

<body id="rec_edit">
	<form action="<?% url %?>" method="get" name="form">
		<table width="100%" border="0" cellspacing="0" cellpadding="0" id="heading">
			<tr>
				<td class="col_title">
					<h1><?% gettext('Rename Recording') %?></h1>
				</td>
			</tr>
		</table>

<?% IF error_msg %?>
		<div class="error"><?% error_msg %?></div>
<?% END %?>

		<table width="100%" border="0" cellspacing="0" cellpadding="0" id="content" class="group">
			<tr class="row_odd">
				<td class="col_label"><h5><?% gettext('Original Name of Recording:') %?></h5></td>
				<td class="col_value"><?% title %?></td>
			</tr>
			<tr class="row_even">
				<td class="col_label"><h5><?% gettext('New Name of Recording:') %?></h5></td>
				<td class="col_value"><input type="text" name="nn" value="<?% title %?>" size="55" /></td>
			</tr>
			<tr class="row_odd">
				<td class="col_label"><h5><?% gettext('Subtitle:') %?></h5></td>
				<td class="col_value"><?% IF subtitle %?><?% subtitle %?><?% END %?></td>
			</tr>
			<tr class="row_even">
				<td class="col_label" valign="top"><h5><?% gettext('Summary:') %?></h5></td>
				<td class="col_value"><?% text %?></td>
			</tr>
		</table>

		<div id="buttons">
			<input type="submit" class="submit" name="save" value="<?% gettext('Rename') %?>" />
			<input type="submit" class="submit" name="exit" value="<?% gettext('Cancel') %?>" />
		</div>
		<input type="hidden" name="aktion" value="rec_rename" /> 
		<input type="hidden" name="id" value="<?% id %?>" /> 
		<?% IF referer %?>
			<input type="hidden" name="referer" value="<?% referer %?>" />
		<?% END %?>
	</form>
</body>

</html>