summaryrefslogtreecommitdiff
path: root/templates/attachments.tpl
blob: 2484865592d3d33f331cb34c6889d67db0cb0b9e (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
60
{strip}
<div class="listing liberty">
	<div class="header">
		<h1>{tr}Liberty Attachments{/tr}</h1>
	</div>

	<div class="body">
		{if $gBitUser->isAdmin()}
			{form legend="Attachment Filter"}
				{formfeedback hash=$feedback}

				<div class="row">
					{formlabel label="User" for=""}
					{forminput}
					<input type="text" name="login" value="{$smarty.request.login}" />
						{formhelp note="Enter the login name of a given user."}
					{/forminput}
				</div>

				<div class="submit">
					<input type="submit" name="apply" value="{tr}Filter{/tr}" />
				</div>
			{/form}
		{/if}

		<table class="data">
			<caption>{tr}Liberty Attachments{/tr}</caption>
			<tr>
				<th style="width:1px"></th>
				<th>{tr}Details{/tr}</th>
				<th>{tr}Actions{/tr}</th>
			</tr>
			{foreach from=$attachments item=attachment}
				<tr class="{cycle values="odd,even"}">
					<td style="text-align:center">
						<a href="{$attachment.source_url}">
							<img src="{$attachment.thumbnail_url.small}" alt="{$attachment.filename}" title="{tr}Attachment Thumbnail{/tr}" />
						</a>
					</td>
					<td>
						{tr}Owner{/tr}: {displayname hash=$attachment}
						<br />
						{tr}Size{/tr}: {$attachment.file_size|kbsize}
						<br />
						{tr}Wiki plugin link{/tr}: {$attachment.wiki_plugin_link}
					</td>
					<td>
					</td>
				</tr>
			{foreachelse}
				<tr class="norecords"><td colspan="3">
					{tr}No records found{/tr}
				</td></tr>
			{/foreach}
		</table>

		{pagination login=$smarty.request.login}
	</div><!-- end .body -->
</div><!-- end .liberty -->
{/strip}