Files
Piwigo/template/cclear/admin/comments.tpl
plegall b08df04688 - modification : adaptation of template variables and blocks in comments
page to display comment by comment instead of picture by picture.

- [template cclear] comments.tpl copied and adapted from template
  default. Return to home new icon. As asked by chrisaga, special id
  #commentsPage in comments.tpl to set the #content margin-left to 0 (since
  no #menubar to display).

- [template cclear] FORM.filter rules taken from template default (these
  rules have been written some time ago by yoDan.

- [template cclear] bug fixed on #theImage : display:block must be used only
  on IMG and not on the P>A (yes, in BSF you can have HTML in picture and
  categories descriptions)


git-svn-id: http://piwigo.org/svn/trunk@848 68402e56-0260-453c-a942-63ccdbb3a9ee
2005-08-21 21:23:17 +00:00

27 lines
1009 B
Smarty

<h2>{lang:User comments validation}</h2>
<form method="post" action="{F_ACTION}">
<input type="hidden" name="list" value="{LIST}" />
<!-- 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="submit" name="submit" value="{lang:Submit}" />
<input type="submit" name="validate-all" value="{lang:Validate All}" />
<input type="submit" name="reject-all" value="{lang:Reject All}" />
<input type="reset" value="{lang:Reset}" />
</p>
</form>