source: trunk/template/yoga/comment_list.tpl @ 5021

Last change on this file since 5021 was 5021, checked in by nikrou, 14 years ago

Feature 1451 : localization with gettext
Use php-gettext (developpement version rev43, because of php5.3) as fallback
Use native language (english) instead of key for translation
Keep directory en_UK for english customization
Need some refactoring for plurals

Todo : managing plugins in the same way

  • Property svn:eol-style set to LF
File size: 2.4 KB
Line 
1{* $Id$ *}
2<ul class="thumbnailCategories">
3{foreach from=$comments item=comment name=comment_loop}
4<li>
5  <div class="thumbnailCategory {if $smarty.foreach.comment_loop.index is odd}odd{else}even{/if}">
6    {if isset($comment.TN_SRC)}
7    <div class="illustration">
8      <a href="{$comment.U_PICTURE}">
9        <img src="{$comment.TN_SRC}" alt="{$comment.ALT}">
10      </a>
11    </div>
12    {/if}
13    <div class="description" style="height:{if isset($comment.IN_EDIT)}200{/if}px">
14      {if isset($comment.U_DELETE) or isset($comment.U_VALIDATE) or isset($comment.U_EDIT) }
15      <ul class="actions" style="float:right">
16        {if isset($comment.U_DELETE)}
17        <li>
18          <a href="{$comment.U_DELETE}" title="{'delete this comment'|@translate}" onclick="return confirm('{'Are you sure?'|@translate|@escape:javascript}');">
19            <img src="{$ROOT_URL}{$themeconf.icon_dir}/delete.png" class="button" alt="[delete]">
20          </a>
21        </li>
22        {/if}
23        {if isset($comment.U_EDIT) and !isset($comment.IN_EDIT)}
24        <li>
25          <a class="editComment" href="{$comment.U_EDIT}#edit_comment" title="{'edit this comment'|@translate}">
26            <img src="{$ROOT_URL}{$themeconf.icon_dir}/edit.png" class="button" alt="[edit]">
27          </a>
28        </li>
29        {/if}
30        {if isset($comment.U_VALIDATE)}
31        <li>
32          <a href="{$comment.U_VALIDATE}" title="{'validate this comment'|@translate}">
33            <img src="{$ROOT_URL}{$themeconf.icon_dir}/validate_s.png" class="button" alt="[validate]">
34          </a>
35        </li>
36        {/if}
37      </ul>
38      {/if}
39      <span class="author">{$comment.AUTHOR}</span> - <span class="date">{$comment.DATE}</span>
40      {if isset($comment.IN_EDIT)}
41      <a name="edit_comment"></a>
42      <form  method="post" action="{$comment.U_EDIT}" class="filter" id="editComment">
43        <fieldset>
44          <legend>{'Edit a comment'|@translate}</legend>
45          <label>{'Comment'|@translate}<textarea name="content" id="contenteditid" rows="5" cols="80">{$Comment.CONTENT|@escape}</textarea></label>
46          <input type="hidden" name="key" value="{$comment.KEY}">
47          <input type="hidden" name="image_id" value="{$comment.IMAGE_ID|@default:$current.id}">
48          <input class="submit" type="submit" value="{'Submit'|@translate}">
49        </fieldset>
50      </form>
51      {else}     
52      <blockquote>{$comment.CONTENT}</blockquote>
53      {/if}
54    </div>
55  </div>
56</li>
57{/foreach}
58</ul>
Note: See TracBrowser for help on using the repository browser.