aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/prosilver/template
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2012-10-24 19:52:16 +0200
committerJoas Schilling <nickvergessen@gmx.de>2012-10-24 19:52:16 +0200
commitf21fd469bca3e5c3504a773a96d1a8fab6c374a7 (patch)
treece7ace743714225ac31616a8a40dc4b2d0d7238d /phpBB/styles/prosilver/template
parent3d56261621acdf8cde9685f69fb14745bb940090 (diff)
downloadforums-f21fd469bca3e5c3504a773a96d1a8fab6c374a7.tar
forums-f21fd469bca3e5c3504a773a96d1a8fab6c374a7.tar.gz
forums-f21fd469bca3e5c3504a773a96d1a8fab6c374a7.tar.bz2
forums-f21fd469bca3e5c3504a773a96d1a8fab6c374a7.tar.xz
forums-f21fd469bca3e5c3504a773a96d1a8fab6c374a7.zip
[feature/soft-delete] Handle soft deleting via Delete Icon
PHPBB3-9567
Diffstat (limited to 'phpBB/styles/prosilver/template')
-rw-r--r--phpBB/styles/prosilver/template/posting_delete_post_body.html38
1 files changed, 38 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/template/posting_delete_post_body.html b/phpBB/styles/prosilver/template/posting_delete_post_body.html
new file mode 100644
index 0000000000..4c69d1d9bc
--- /dev/null
+++ b/phpBB/styles/prosilver/template/posting_delete_post_body.html
@@ -0,0 +1,38 @@
+<!-- INCLUDE overall_header.html -->
+
+<form id="confirm" action="{S_CONFIRM_ACTION}" method="post">
+<div class="panel">
+ <div class="inner">
+
+ <h2>{MESSAGE_TITLE}</h2>
+ <p>{MESSAGE_TEXT}</p>
+
+ <!-- IF S_DELETE_REASON or (S_ALLOWED_DELETE and S_ALLOWED_SOFTDELETE) -->
+ <fieldset class="fields1">
+ <!-- IF S_ALLOWED_DELETE and S_ALLOWED_SOFTDELETE -->
+ <dl>
+ <dt><label for="soft_delete">{L_DELETE_POST_SOFT}:</label></dt>
+ <dd><label for="soft_delete"><input id="soft_delete" name="soft_delete" type="checkbox" checked="checked" value="1" /> {L_DELETE_POST_SOFT_EXP}</label></dd>
+ </dl>
+ <!-- ENDIF -->
+
+ <!-- IF S_DELETE_REASON -->
+ <dl>
+ <dt><label for="delete_reason">{L_DELETE_POST_REASON}:</label></dt>
+ <dd><input type="text" name="delete_reason" id="delete_reason" value="" class="inputbox autowidth" maxlength="120" size="45" /></dd>
+ </dl>
+ <!-- ENDIF -->
+ </fieldset>
+ <!-- ENDIF -->
+
+ <fieldset class="submit-buttons">
+ {S_HIDDEN_FIELDS}
+ <input type="submit" name="confirm" value="{L_YES}" class="button1" />&nbsp;
+ <input type="submit" name="cancel" value="{L_NO}" class="button2" />
+ </fieldset>
+
+ </div>
+</div>
+</form>
+
+<!-- INCLUDE overall_footer.html -->