0
<form id="edit_form" action="{% admin "update_comment" %}" method="post" accept-charset="utf-8" enctype="multipart/form-data">
0
- <label for="author">${ "Author" | translate }</label>
0
- <input class="text" type="text" name="author" value="${ comment.author | escape }" id="author" />
0
- <label for="author_email">${ "Author E-Mail" | translate }</label>
0
- <input class="text" type="text" name="author_email" value="${ comment.author_email | escape }" id="author_email" />
0
- <label for="author_url">${ "Author Website" | translate }</label>
0
- <input class="text" type="text" name="author_url" value="${ comment.author_url | escape }" id="author_url" />
0
- <label for="status">${ "Status" | translate }</label>
0
- <select name="status" id="status">
0
- <option value="approved"${ comment.status | option_selected("approved") }>${ "Approved" | translate }</option>
0
- <option value="denied"${ comment.status | option_selected("denied") }>${ "Denied" | translate }</option>
0
- <option value="spam"${ comment.status | option_selected("spam") }>${ "Spam" | translate }</option>
0
- <option value="pingback"${ comment.status | option_selected("pingback") }>${ "Pingback" | translate }</option>
0
- <option value="trackback"${ comment.status | option_selected("trackback") }>${ "Trackback" | translate }</option>
0
- <label for="created_at">${ "Timestamp" | translate }</label>
0
- <input class="text" type="text" name="created_at" value="${ comment.created_at | date }" id="created_at" />
0
<label for="body">${ "Body" | translate }</label>
0
<textarea class="wide preview_me" rows="12" name="body" id="body" cols="50">${ comment.body | escape }</textarea>
0
+ <div class="clear"></div>
0
+ <noscript><br /></noscript>
0
+ <div id="more_options" class="more_options js_disabled">
0
+ <label for="author">${ "Author" | translate }</label>
0
+ <input class="text" type="text" name="author" value="${ comment.author | escape }" id="author" />
0
+ <label for="author_email">${ "Author E-Mail" | translate }</label>
0
+ <input class="text" type="text" name="author_email" value="${ comment.author_email | escape }" id="author_email" />
0
+ <label for="author_url">${ "Author Website" | translate }</label>
0
+ <input class="text" type="text" name="author_url" value="${ comment.author_url | escape }" id="author_url" />
0
+ <label for="status">${ "Status" | translate }</label>
0
+ <select name="status" id="status">
0
+ <option value="approved"${ comment.status | option_selected("approved") }>${ "Approved" | translate }</option>
0
+ <option value="denied"${ comment.status | option_selected("denied") }>${ "Denied" | translate }</option>
0
+ <option value="spam"${ comment.status | option_selected("spam") }>${ "Spam" | translate }</option>
0
+ <option value="pingback"${ comment.status | option_selected("pingback") }>${ "Pingback" | translate }</option>
0
+ <option value="trackback"${ comment.status | option_selected("trackback") }>${ "Trackback" | translate }</option>
0
+ <label for="created_at">${ "Timestamp" | translate }</label>
0
+ <input class="text" type="text" name="created_at" value="${ comment.created_at | strftime }" id="created_at" />
0
+ ${ trigger.call("edit_comment_options", comment) }
0
+ <div class="clear"></div>
0
<input type="hidden" name="hash" value="$site.secure_hashkey" id="hash" />
0
<input type="hidden" name="id" value="$comment.id" id="id" />