mirror of
https://github.com/ZDoom/zdoom-styles.git
synced 2024-11-24 12:21:03 +00:00
97 lines
No EOL
4.1 KiB
HTML
97 lines
No EOL
4.1 KiB
HTML
<!-- INCLUDE mcp_header.html -->
|
|
|
|
<h2><a href="{U_VIEW_TOPIC}">{TOPIC_TITLE}</a></h2>
|
|
|
|
<form id="mcp" method="post" action="{S_MCP_ACTION}">
|
|
|
|
<!-- IF S_CAN_SPLIT -->
|
|
<fieldset id="split-panel" class="fields2">
|
|
<p>{L_SPLIT_TOPIC_EXPLAIN}</p>
|
|
|
|
<!-- IF S_SHOW_TOPIC_ICONS -->
|
|
<dl>
|
|
<dt><label for="icon">{L_TOPIC_ICON}:</label></dt>
|
|
<dd><label for="icon"><input type="radio" name="icon" id="icon" value="0" checked="checked" /> {L_NO_TOPIC_ICON}</label>
|
|
<!-- BEGIN topic_icon --><label for="icon-{topic_icon.ICON_ID}"><input type="radio" name="icon" id="icon-{topic_icon.ICON_ID}" value="{topic_icon.ICON_ID}" {topic_icon.S_ICON_CHECKED} /><img src="{topic_icon.ICON_IMG}" width="{topic_icon.ICON_WIDTH}" height="{topic_icon.ICON_HEIGHT}" alt="" title="" /></label> <!-- END topic_icon --></dd>
|
|
</dl>
|
|
<!-- ENDIF -->
|
|
|
|
<dl>
|
|
<dt><label for="subject">{L_SPLIT_SUBJECT}:</label></dt>
|
|
<dd><input type="text" name="subject" id="subject" size="45" maxlength="64" tabindex="2" value="{SPLIT_SUBJECT}" title="{L_SPLIT_SUBJECT}" class="inputbox" /></dd>
|
|
</dl>
|
|
<dl>
|
|
<dt><label>{L_SPLIT_FORUM}:</label></dt>
|
|
<dd><select name="to_forum_id">{S_FORUM_SELECT}</select></dd>
|
|
</dl>
|
|
</fieldset>
|
|
<!-- ENDIF -->
|
|
|
|
<!-- IF S_CAN_MERGE -->
|
|
<fieldset id="merge-panel" class="fields2">
|
|
<p>{L_MERGE_TOPIC_EXPLAIN}</p>
|
|
<dl>
|
|
<dt><label for="to_topic_id">{L_MERGE_TOPIC_ID}:</label></dt>
|
|
<dd>
|
|
<input class="inputbox autowidth" type="text" size="6" name="to_topic_id" id="to_topic_id" value="{TO_TOPIC_ID}" style="width: 50px;" />
|
|
<a href="{U_SELECT_TOPIC}" >{L_SELECT_TOPIC}</a>
|
|
</dd>
|
|
<!-- IF TO_TOPIC_INFO --><dd>{TO_TOPIC_INFO}</dd><!-- ENDIF -->
|
|
</dl>
|
|
</fieldset>
|
|
<!-- ENDIF -->
|
|
|
|
<h3 id="review">{L_TOPIC_REVIEW}</h3>
|
|
|
|
<div id="topicreview">
|
|
<!-- BEGIN postrow -->
|
|
<div class="block post">
|
|
<div class="float-right">
|
|
<a href="{postrow.U_POST_DETAILS}" class="button2">{L_POST_DETAILS}</a>
|
|
<label class="button2">{L_SELECT}: <input type="checkbox" name="post_id_list[]" value="{postrow.POST_ID}"<!-- IF postrow.S_CHECKED --> checked="checked"<!-- ENDIF --> /></label>
|
|
</div>
|
|
<h3>{postrow.POST_SUBJECT}</h3>
|
|
<p class="post-time">{L_POSTED} {postrow.POST_DATE} {L_POST_BY_AUTHOR} <strong>{postrow.POST_AUTHOR_FULL}</strong><!-- IF postrow.U_MCP_DETAILS --> [ <a href="{postrow.U_MCP_DETAILS}">{L_POST_DETAILS}</a> ]<!-- ENDIF --></p>
|
|
|
|
<div class="postbody" id="pr{postrow.POST_ID}">
|
|
|
|
<!-- IF postrow.S_POST_UNAPPROVED or postrow.S_POST_REPORTED -->
|
|
<p class="block rules">
|
|
<!-- IF postrow.S_POST_UNAPPROVED --><a href="{postrow.U_MCP_APPROVE}"><strong>{L_POST_UNAPPROVED}</strong></a><br /><!-- ENDIF -->
|
|
<!-- IF postrow.S_POST_REPORTED --><a href="{postrow.U_MCP_REPORT}"><strong>{L_POST_REPORTED}</strong></a><!-- ENDIF -->
|
|
</p>
|
|
<!-- ENDIF -->
|
|
|
|
{postrow.MESSAGE}
|
|
|
|
<!-- IF postrow.S_HAS_ATTACHMENTS -->
|
|
<dl class="attachbox">
|
|
<dt>{L_ATTACHMENTS}</dt>
|
|
<!-- BEGIN attachment -->
|
|
<dd>{postrow.attachment.DISPLAY_ATTACHMENT}</dd>
|
|
<!-- END attachment -->
|
|
</dl>
|
|
<!-- ENDIF -->
|
|
|
|
</div>
|
|
</div>
|
|
<!-- END postrow -->
|
|
</div>
|
|
|
|
<fieldset class="display-actions">
|
|
<select name="action">
|
|
<option value="" selected="selected">{L_SELECT_ACTION}</option>
|
|
<!-- IF S_CAN_APPROVE --><option value="approve">{L_APPROVE_POSTS}</option><!-- ENDIF -->
|
|
<!-- IF S_CAN_LOCK --><option value="lock_post">{L_LOCK_POST_POSTS} [ {L_LOCK_POST_EXPLAIN} ]</option><option value="unlock_post">{L_UNLOCK_POST_POSTS}</option><!-- ENDIF -->
|
|
<!-- IF S_CAN_DELETE --><option value="delete_post">{L_DELETE_POSTS}</option><!-- ENDIF -->
|
|
<!-- IF S_CAN_MERGE --><option value="merge_posts"<!-- IF S_MERGE_VIEW --> selected="selected"<!-- ENDIF -->>{L_MERGE_POSTS}</option><!-- ENDIF -->
|
|
<!-- IF S_CAN_SPLIT --><option value="split_all"<!-- IF S_SPLIT_VIEW --> selected="selected"<!-- ENDIF -->>{L_SPLIT_POSTS}</option><option value="split_beyond">{L_SPLIT_AFTER}</option><!-- ENDIF -->
|
|
</select>
|
|
<input class="button1" type="submit" name="mcp_topic_submit" value="{L_SUBMIT}" />
|
|
{S_HIDDEN_FIELDS}
|
|
{S_FORM_TOKEN}
|
|
</fieldset>
|
|
|
|
</form>
|
|
|
|
<!-- INCLUDE mcp_footer.html --> |