aboutsummaryrefslogtreecommitdiffstats
path: root/themes/default/template/comment_list.tpl
blob: d35b2e18f968d113769f306d58b4bc8d5bb07b5e (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
{* $Id$ *}
<ul class="thumbnailCategories">
{foreach from=$comments item=comment name=comment_loop}
<li>
	<div class="thumbnailCategory {if $smarty.foreach.comment_loop.index is odd}odd{else}even{/if}">
	{if isset($comment.TN_SRC)}
	<div class="illustration">
		<a href="{$comment.U_PICTURE}">
		<img src="{$comment.TN_SRC}" alt="{$comment.ALT}">
		</a>
	</div>
	{/if}
	<div class="description"{if isset($comment.IN_EDIT)} style="height:200px"{/if}>
		{if isset($comment.U_DELETE) or isset($comment.U_VALIDATE) or isset($comment.U_EDIT) }
		<div class="actions" style="float:right">
		{if isset($comment.U_DELETE)}
			<a href="{$comment.U_DELETE}" title="{'delete this comment'|@translate}" onclick="return confirm('{'Are you sure?'|@translate|@escape:javascript}');">
				<img src="{$ROOT_URL}{$themeconf.icon_dir}/delete.png" alt="[delete]">
			</a>
		{/if}
		{if isset($comment.U_EDIT) and !isset($comment.IN_EDIT)}
			<a class="editComment" href="{$comment.U_EDIT}#edit_comment" title="{'edit this comment'|@translate}">
				<img src="{$ROOT_URL}{$themeconf.icon_dir}/edit.png" alt="[edit]">
			</a>
		{/if}
		{if isset($comment.U_VALIDATE)}
			<a href="{$comment.U_VALIDATE}" title="{'validate this comment'|@translate}">
				<img src="{$ROOT_URL}{$themeconf.icon_dir}/validate_s.png" alt="[validate]">
			</a>
		{/if}
		</div>
		{/if}

		<span class="author">{$comment.AUTHOR}</span> - <span class="date">{$comment.DATE}</span>
		{if isset($comment.IN_EDIT)}
		<a name="edit_comment"></a>
		<form  method="post" action="{$comment.U_EDIT}" class="filter" id="editComment">
			<fieldset>
				<legend>{'Edit a comment'|@translate}</legend>
				<label>{'Comment'|@translate}<textarea name="content" id="contenteditid" rows="5" cols="80">{$comment.CONTENT|@escape}</textarea></label>
				<input type="hidden" name="key" value="{$comment.KEY}">
				<input type="hidden" name="image_id" value="{$comment.IMAGE_ID|@default:$current.id}">
				<input class="submit" type="submit" value="{'Submit'|@translate}">
			</fieldset>
		</form>
		{else}
		<blockquote><div>{$comment.CONTENT}</div></blockquote>
		{/if}
	</div>
	</div>
</li>
{/foreach}
</ul>