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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
<!--media list-->
<body class="frame">
<div id="body">
<?% ######################################################################## %?>
<?% BLOCK RowButtons %?>
<?% IF allow('mledit') %?>
<a href="?cmd=mledit&data=<?% id %?>">
<img src="images/edit.<?% global.imagetyp %?>" alt="" title="<?% gettext("Edit media") %?>" />
</a>
<?% END %?>
<?% IF allow('mldelete') %?>
<a href="javascript:surecmd('<?% gettext("You will delete this media") %?>','<?% escape(title) %?>','mldelete','<?% id %?>',620,670)">
<img src="images/delete.<?% global.imagetyp %?>" alt="" title="<?% gettext("Delete media") %?>" />
</a>
<?% END %?>
<?% END %?>
<?% ######################################################################## %?>
<?% BLOCK item %?>
<?% IF value %?>
<a href="?cmd=mlsearch&__search&__selfields=<?% topic %?>&__searchitem=<?% value %?>">
<?% value %?>
</a>
<?% END %?>
<?% END %?>
<?% ######################################################################## %?>
<?% BLOCK ItemAsFlat %?>
<tr<?% ' class="two"' IF loop.count mod 2 == 0 %?>>
<td class="fieldinline">
<div class="medialist">
<a href="?cmd=mldisplay&data=<?% id %?>" class="fieldinline">
<img class="medialist" alt="" src='<?% IF param.usecache == "y" %?>?cmd=mlcache&__source=<?% END %?><?% imgurl %?>' />
</a>
</div>
</td>
<td class="fieldinline">
<a href="?cmd=mldisplay&data=<?% id %?>" class="fieldinline">
<font class="title">
<?% title %?><br />
</font>
<font class="subtitle">
<?% subtitle %?> ( <?% director %?> )<br />
</font>
<?% IF global.hideDescription != 1 && description.length > 0 %?>
<font class="description"><?% chop(description,100,5) %?></font>
<?% END %?>
</a>
</td>
<td class="fieldinline push">
<?% IF year > 0 %?>
<font class="description"><?% PROCESS item topic="year" value=year %?></font>
<?% END %?>
<br />
<?% PROCESS RowButtons %?>
</td>
</tr>
<?% END %?>
<?% ######################################################################## %?>
<h1><?% gettext("Media library") %?></h1>
<form name="mlist" action="">
<table class="largetable" summary="">
<tr><td class="largehead"> </td></tr>
<tr>
<td class="largetext" align="left">
<table summary="" width="100%">
<tr height="0"><th width="60"></th><th></th><th width="64"></th></tr>
<?% FOREACH zeile IN data %?>
<?% IF verbose;"<!-- Item: ";FOREACH x IN zeile;loop.count - 1;":";x.replace("-"," ");"|";END;"-->";END %?>
<?% id=zeile.0;imgurl=zeile.1;title=zeile.2;subtitle=zeile.3;year=zeile.4;director=zeile.5;description=zeile.6; %?>
<?% PROCESS ItemAsFlat %?>
<?% END %?>
</table>
</td>
</tr>
<tr><td class="largebottom"></td></tr>
</table>
</form>
</div>
<!-- ###### Seite ###### -->
<div id="sidebar">
<table summary="">
<tr><td class="sidehead"><?% gettext("Media library",20) %?></td></tr>
<tr>
<td class="sidetext">
<?% IF allow('mledit') %?>
<a title="<?% gettext("New") %?>" href="?cmd=mledit&__range=<?% param.range %?>"><img src="images/new.<?% global.imagetyp %?>" alt="" /></a>
<a title="<?% gettext("New") %?>" href="?cmd=mledit&__range=<?% param.range %?>"><?% gettext("New",18) %?></a><br />
<?% END %?>
</td>
</tr>
<tr><td class="sidebottom"></td></tr>
</table>
<table summary="">
<tr><td class="sidehead"><?% gettext("Search",20) %?></td></tr>
<tr>
<td class="sidetext">
<form name="mediarange" action="">
<select name='range' onchange="di('?cmd=mllist&__range=',this.form.range.options[this.form.range.options.selectedIndex].value)">
<?% FOREACH r IN param.ranges %?>
<option value="<?% url( r.0 ) %?>"<?% ' selected="selected"' IF param.range == r.0 %?>><?% r.1 %?></option>
<?% END %?>
</select>
</form>
</td>
</tr>
<tr>
<td class="sidebottom"></td>
</tr>
</table>
<p id="sidefooter"> </p>
</div>
<?% INCLUDE header.inc %?>
|