source: trunk/themes/default/template/comment_list.tpl @ 17351

Last change on this file since 17351 was 17351, checked in by mistic100, 12 years ago

feature 2380: add URL for user comment

  • Property svn:eol-style set to LF
File size: 3.2 KB
Line 
1{if isset($comment_derivative_params)}
2{strip}{html_style}
3.commentElement .illustration{ldelim}
4        width: {$comment_derivative_params->max_width()+5}px
5}
6
7.content .commentElement .description{ldelim}
8        height: {$comment_derivative_params->max_height()+5}px
9}
10{/html_style}{/strip}
11{/if}
12<ul class="commentsList">
13{foreach from=$comments item=comment name=comment_loop}
14<li class="commentElement {if $smarty.foreach.comment_loop.index is odd}odd{else}even{/if}">
15        {if isset($comment.src_image)}
16        {if isset($comment_derivative_params)}
17        {assign var=derivative value=$pwg->derivative($comment_derivative_params, $comment.src_image)}
18        {else}
19        {assign var=derivative value=$pwg->derivative($derivative_params, $comment.src_image)}
20        {/if}
21        {if !$derivative->is_cached()}
22        {combine_script id='jquery.ajaxmanager' path='themes/default/js/plugins/jquery.ajaxmanager.js' load='footer'}
23        {combine_script id='thumbnails.loader' path='themes/default/js/thumbnails.loader.js' require='jquery.ajaxmanager' load='footer'}
24        {/if}
25        <div class="illustration">
26                <a href="{$comment.U_PICTURE}">
27                <img {if $derivative->is_cached()}src="{$derivative->get_url()}"{else}src="{$ROOT_URL}{$themeconf.img_dir}/ajax-loader-small.gif" data-src="{$derivative->get_url()}"{/if} alt="{$comment.ALT}">
28                </a>
29        </div>
30        {/if}
31        <div class="description"{if isset($comment.IN_EDIT)} style="height:200px"{/if}>
32                {if isset($comment.U_DELETE) or isset($comment.U_VALIDATE) or isset($comment.U_EDIT)}
33                <div class="actions" style="float:right;font-size:90%">
34                {if isset($comment.U_DELETE)}
35                        <a href="{$comment.U_DELETE}" onclick="return confirm('{'Are you sure?'|@translate|@escape:javascript}');">
36                                {'Delete'|@translate}
37                        </a>{if isset($comment.U_VALIDATE) or isset($comment.U_EDIT) or isset($comment.U_CANCEL)} | {/if}
38                {/if}
39                {if isset($comment.U_CANCEL)}
40                        <a href="{$comment.U_CANCEL}">
41                                {'Cancel'|@translate}
42                        </a>{if isset($comment.U_VALIDATE) or isset($comment.U_EDIT)} | {/if}
43                {/if}
44                {if isset($comment.U_EDIT) and !isset($comment.IN_EDIT)}
45                        <a class="editComment" href="{$comment.U_EDIT}#edit_comment">
46                                {'Edit'|@translate}
47                        </a>{if isset($comment.U_VALIDATE)} | {/if}
48                {/if}
49                {if isset($comment.U_VALIDATE)}
50                        <a href="{$comment.U_VALIDATE}">
51                                {'Validate'|@translate}
52                        </a>
53                {/if}&nbsp;
54                </div>
55                {/if}
56
57                <span class="commentAuthor">{if $comment.WEBSITE_URL}<a href="{$comment.WEBSITE_URL}" class="external" target="_blank">{$comment.AUTHOR}</a>{else}{$comment.AUTHOR}{/if}</span>
58      - <span class="commentDate">{$comment.DATE}</span>
59                {if isset($comment.IN_EDIT)}
60                <a name="edit_comment"></a>
61                <form method="post" action="{$comment.U_EDIT}" id="editComment">
62                        <p><label>{'Edit a comment'|@translate} :</label></p>
63                        <p><textarea name="content" id="contenteditid" rows="5" cols="80">{$comment.CONTENT|@escape}</textarea></p>
64                        <p><input type="hidden" name="key" value="{$comment.KEY}">
65                                <input type="hidden" name="pwg_token" value="{$comment.PWG_TOKEN}">
66                                <input type="hidden" name="image_id" value="{$comment.IMAGE_ID|@default:$current.id}">
67                                <input type="submit" value="{'Submit'|@translate}">
68                        </p>
69                </form>
70                {else}
71                <blockquote><div>{$comment.CONTENT}</div></blockquote>
72                {/if}
73        </div>
74</li>
75{/foreach}
76</ul>
Note: See TracBrowser for help on using the repository browser.