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

Last change on this file since 2864 was 2531, checked in by vdigital, 16 years ago

roma tpl were missing.

  • 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 2531 2008-09-14 12:25:34Z 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    <ul class="actions">
17      <li><label><input type="radio" name="action-{$comment.ID}" value="reject" />{'Reject'|@translate}</label></li>
18      <li><label><input type="radio" name="action-{$comment.ID}" value="validate" />{'Validate'|@translate}</label></li>
19    </ul>
20  </div>
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.