mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Add comment edit icon and form
Show an icon next to the comment deletion icon, which leads to a comment edit form. Signed-off-by: Marcel Korpel <marcel.korpel@gmail.com> Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
parent
8375d21210
commit
92e19e95f3
11 changed files with 139 additions and 9 deletions
|
@ -1,5 +1,5 @@
|
|||
<div id="generic-form" class="box">
|
||||
<h2><?= __("Add Comment"); ?></h2>
|
||||
<h2><?= (isset($comment_id)) ? __('Edit comment for: %s', htmlspecialchars($pkgbase_name)) : __("Add Comment"); ?></h2>
|
||||
<form action="<?= get_pkgbase_uri($pkgbase_name) ?>" method="post">
|
||||
<fieldset>
|
||||
<?php
|
||||
|
@ -8,14 +8,18 @@ if (isset($_REQUEST['comment']) && check_token()) {
|
|||
}
|
||||
?>
|
||||
<div>
|
||||
<input type="hidden" name="action" value="<?= (isset($comment_id)) ? "do_EditComment" : "do_AddComment" ?>" />
|
||||
<input type="hidden" name="ID" value="<?= intval($base_id) ?>" />
|
||||
<?php if (isset($comment_id)): ?>
|
||||
<input type="hidden" name="comment_id" value="<?= $comment_id ?>" />
|
||||
<?php endif; ?>
|
||||
<input type="hidden" name="token" value="<?= htmlspecialchars($_COOKIE['AURSID']) ?>" />
|
||||
</div>
|
||||
<p>
|
||||
<textarea id="id_comment" name="comment" cols="80" rows="10"></textarea>
|
||||
<textarea id="id_comment" name="comment" cols="80" rows="10"><?= (isset($comment_id)) ? htmlspecialchars($comment) : "" ?></textarea>
|
||||
</p>
|
||||
<p>
|
||||
<input type="submit" value="<?= __("Add Comment") ?>" />
|
||||
<input type="submit" value="<?= (isset($comment_id)) ? __("Save") : __("Add Comment") ?>" />
|
||||
</p>
|
||||
</fieldset>
|
||||
</form>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue