source: branches/2.0/admin/template/goto/comments.tpl @ 3009

Last change on this file since 3009 was 2943, checked in by vdigital, 16 years ago

Pictures > Waiting > Pictures

  • Please, center column titles (category, Date, file, thumbnail, Author)
  • Caps are missing : Category, File, Thumbnail

and Pictures > Waiting > Comments

  • Reject * Validate aligned

and Pictures > Thumbnails

  • Caps are missing : path, filesize

Translators: (Only English and French are updated)

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 1.3 KB
Line 
1{* $Id: comments.tpl 2943 2008-12-07 16:02:59Z vdigital $ *}
2<div class="titrePage">
3  <h2>{'waiting'|@translate} {$TABSHEET_TITLE}</h2>
4</div>
5
6<h3>{'User comments validation'|@translate}</h3>
7
8{if !empty($comments) }
9<form method="post" action="{$F_ACTION}">
10 
11  {foreach from=$comments item=comment}
12  <div class="comment">
13    <a class="illustration" href="{$comment.U_PICTURE}"><img src="{$comment.TN_SRC}" /></a>
14    <p class="commentHeader"><strong>{$comment.AUTHOR}</strong> - <em>{$comment.DATE}</em></p>
15    <blockquote>{$comment.CONTENT}</blockquote>
16  </div>
17    <ul class="actions">
18      <li><label><input type="radio" name="action-{$comment.ID}" value="reject" />{'Reject'|@translate}</label></li>
19      <li><label><input type="radio" name="action-{$comment.ID}" value="validate" />{'Validate'|@translate}</label></li>
20    </ul>
21  {/foreach}
22
23  <p class="bottomButtons">
24    <input type="hidden" name="list" value="{$LIST}" />
25    <input class="submit" type="submit" name="submit" value="{'Submit'|@translate}" {$TAG_INPUT_ENABLED}/>
26    <input class="submit" type="submit" name="validate-all" value="{'Validate All'|@translate}" {$TAG_INPUT_ENABLED}/>
27    <input class="submit" type="submit" name="reject-all" value="{'Reject All'|@translate}" {$TAG_INPUT_ENABLED}/>
28    <input class="submit" type="reset" value="{'Reset'|@translate}" />
29  </p>
30
31</form>
32{/if}
Note: See TracBrowser for help on using the repository browser.