mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-06-27 05:21:13 +02:00
01be744d07
(Since Javascript/Rating it was not possible to change button without loosing rating stars). p0w0 is fix for a new button display. git-svn-id: http://piwigo.org/svn/trunk@1780 68402e56-0260-453c-a942-63ccdbb3a9ee
25 lines
1.1 KiB
Smarty
25 lines
1.1 KiB
Smarty
<h2>{lang:User comments validation}</h2>
|
|
|
|
<form method="post" action="{F_ACTION}">
|
|
<!-- BEGIN comment -->
|
|
<div class="comment">
|
|
<a class="illustration" href="{comment.U_PICTURE}"><img src="{comment.TN_SRC}" /></a>
|
|
<p class="commentHeader"><strong>{comment.AUTHOR}</strong> - <em>{comment.DATE}</em></p>
|
|
<blockquote>{comment.CONTENT}</blockquote>
|
|
<ul class="actions">
|
|
<li><label><input type="radio" name="action-{comment.ID}" value="reject" />{lang:Reject}</label></li>
|
|
<li><label><input type="radio" name="action-{comment.ID}" value="validate" />{lang:Validate}</label></li>
|
|
</ul>
|
|
</div>
|
|
<!-- END comment -->
|
|
|
|
<p class="bottomButtons">
|
|
<input type="hidden" name="list" value="{LIST}" />
|
|
<input class="submit" type="submit" name="submit" value="{lang:Submit}" {TAG_INPUT_ENABLED}/>
|
|
<input class="submit" type="submit" name="validate-all" value="{lang:Validate All}" {TAG_INPUT_ENABLED}/>
|
|
<input class="submit" type="submit" name="reject-all" value="{lang:Reject All}" {TAG_INPUT_ENABLED}/>
|
|
<input class="submit" type="reset" value="{lang:Reset}" />
|
|
</p>
|
|
|
|
</form>
|