blob: fe4b9f045860fa9bb1ea98f0ffc88ca97b648e64 (
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
|
<!--media save-->
<body class="frame">
<div id="body">
<h1><?% gettext("Media library") %?></h1>
<?% trimmed = data FILTER trim %?>
<?% IF data.size > 1 || trimmed != "" %?>
<table class="editortable" summary="">
<tr><td class="editorhead"><div class="editorhead"> </div></td></tr>
<tr>
<td class="editortext" align="left">
<?% IF data.size <= 0 %?>
<?% data %?>
<?% ELSE %?>
<table summary="" width="100%">
<?% FOREACH zeile IN data %?>
<tr<?% " class='two'" IF loop.count mod 2 == 0 %?>>
<td><?% zeile %?></td>
</tr>
<?% END %?>
</table>
<?% END %?>
</td>
</tr>
<tr><td class="editorbottom"></td></tr>
</table>
<?% END %?>
</div>
<!-- ###### Seite ###### -->
<div id="sidebar">
<table summary="">
<tr><td class="sidehead"><?% gettext("Media library",20) %?></td></tr>
<tr>
<td class="sidetext">
<a title="<?% gettext("Back") %?>" href="?cmd=mldisplay&data=<?% cgi.param('data') %?>"><img src="images/back.<?% global.imagetyp %?>" alt="" /></a>
<a title="<?% gettext("Back") %?>" href="?cmd=mldisplay&data=<?% cgi.param('data') %?>"><?% gettext("Back",18) %?></a><br />
</td>
</tr>
<tr><td class="sidebottom"></td></tr>
</table>
<p id="sidefooter"> </p>
</div>
<?% INCLUDE header.inc %?>
|