diff options
author | chrisaga <chrisaga@piwigo.org> | 2005-08-20 09:12:41 +0000 |
---|---|---|
committer | chrisaga <chrisaga@piwigo.org> | 2005-08-20 09:12:41 +0000 |
commit | 52b88882416af59e1ecf9cbcf26856941615a0dd (patch) | |
tree | ef33bb1ec01dd422e4620620756bf3088ea28e57 /template/cclear/admin | |
parent | 4ec85205868c2057d6bceb59fbd71d6cfd5acf51 (diff) |
new (from default template)
git-svn-id: http://piwigo.org/svn/trunk@842 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/cclear/admin/comments.tpl | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/template/cclear/admin/comments.tpl b/template/cclear/admin/comments.tpl new file mode 100644 index 000000000..93e5c4ed9 --- /dev/null +++ b/template/cclear/admin/comments.tpl @@ -0,0 +1,26 @@ +<h2>{lang:User comments validation}</h2> + +<form method="post" action="{F_ACTION}" id="comment"> + + <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> |