source: trunk/template/yoga/admin/comments.tpl @ 1780

Last change on this file since 1780 was 1780, checked in by vdigital, 17 years ago

Yoga has input[type="submit"] style addressability restored.
(Since Javascript/Rating it was not possible to change button without loosing rating stars).
p0w0 is fix for a new button display.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.1 KB
Line 
1<h2>{lang:User comments validation}</h2>
2
3<form method="post" action="{F_ACTION}">
4  <!-- BEGIN comment -->
5  <div class="comment">
6    <a class="illustration" href="{comment.U_PICTURE}"><img src="{comment.TN_SRC}" /></a>
7    <p class="commentHeader"><strong>{comment.AUTHOR}</strong> - <em>{comment.DATE}</em></p>
8    <blockquote>{comment.CONTENT}</blockquote>
9    <ul class="actions">
10      <li><label><input type="radio" name="action-{comment.ID}" value="reject" />{lang:Reject}</label></li>
11      <li><label><input type="radio" name="action-{comment.ID}" value="validate" />{lang:Validate}</label></li>
12    </ul>
13  </div>
14  <!-- END comment -->
15
16  <p class="bottomButtons">
17    <input type="hidden" name="list" value="{LIST}" />
18    <input class="submit" type="submit" name="submit" value="{lang:Submit}" {TAG_INPUT_ENABLED}/>
19    <input class="submit" type="submit" name="validate-all" value="{lang:Validate All}" {TAG_INPUT_ENABLED}/>
20    <input class="submit" type="submit" name="reject-all" value="{lang:Reject All}" {TAG_INPUT_ENABLED}/>
21    <input class="submit" type="reset" value="{lang:Reset}" />
22  </p>
23
24</form>
Note: See TracBrowser for help on using the repository browser.