mirror of
https://github.com/ZDoom/zdoom-styles.git
synced 2024-11-24 12:21:03 +00:00
98 lines
4 KiB
HTML
98 lines
4 KiB
HTML
<!-- INCLUDE ucp_header.html -->
|
|
|
|
<form id="ucp" method="post" action="{S_UCP_ACTION}"{S_FORM_ENCTYPE}>
|
|
|
|
<h3 class="box-heading">{L_TITLE}</h3>
|
|
<div class="panel">
|
|
<div class="inner">
|
|
|
|
<p>{L_WATCHED_EXPLAIN}</p>
|
|
|
|
<!-- IF .forumrow -->
|
|
<table class="table table-striped">
|
|
<thead style="background:none;">
|
|
<tr>
|
|
|
|
<th>{L_WATCHED_FORUMS}</th>
|
|
<th class="lastpost">{L_LAST_POST}</th>
|
|
<th class="mark">{L_MARK}</th>
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody class="topiclist cplist">
|
|
|
|
<!-- BEGIN forumrow -->
|
|
<tr>
|
|
|
|
<td><i class="pcon {forumrow.FORUM_IMG_STYLE}"></i><a href="{forumrow.U_VIEWFORUM}" class="forumtitle">{forumrow.FORUM_NAME}</a><br />{forumrow.FORUM_DESC}</td>
|
|
<td class="lastpost"><!-- IF forumrow.LAST_POST_TIME --><span><dfn>{L_LAST_POST} </dfn>{L_POST_BY_AUTHOR} {forumrow.LAST_POST_AUTHOR_FULL}
|
|
<a href="{topicrow.U_LAST_POST}">{LAST_POST_IMG}</a> <br />{forumrow.LAST_POST_TIME}</span>
|
|
<!-- ELSE -->{L_NO_POSTS}<br /> <!-- ENDIF -->
|
|
</td>
|
|
<td class="mark"><center><input type="checkbox" name="f[{forumrow.FORUM_ID}]" id="f{forumrow.FORUM_ID}" /></center></td>
|
|
|
|
</tr>
|
|
<!-- END forumrow -->
|
|
</tbody>
|
|
</table>
|
|
<!-- ELSEIF S_FORUM_NOTIFY -->
|
|
<p><strong>{L_NO_WATCHED_FORUMS}</strong></p>
|
|
<!-- ENDIF -->
|
|
|
|
<!-- IF .topicrow -->
|
|
<hr class="dashed">
|
|
<ul class="linklist">
|
|
<li class="rightside p-pagination">
|
|
<!-- IF TOTAL_TOPICS --> <span class="label">{TOTAL_TOPICS}</span> <!-- ENDIF -->
|
|
<!-- IF PAGE_NUMBER --><!-- IF PAGINATION --> • <a href="#" onclick="jumpto(); return false;" title="{L_JUMP_TO_PAGE}"><span class="label">{PAGE_NUMBER}</span></a> • <span class="label">{PAGINATION}</span><!-- ELSE --> • <span class="label">{PAGE_NUMBER}</span><!-- ENDIF --><!-- ENDIF -->
|
|
</li>
|
|
</ul>
|
|
<table class="table table-striped">
|
|
<thead style="background:none;">
|
|
<tr>
|
|
|
|
<th>{L_WATCHED_TOPICS}</th>
|
|
<th class="lastpost">{L_LAST_POST}</th>
|
|
<th class="mark">{L_MARK}</th>
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody class="topiclist cplist">
|
|
|
|
<!-- BEGIN topicrow -->
|
|
<tr>
|
|
|
|
<td<!-- IF topicrow.TOPIC_ICON_IMG --> style="background-image: url({T_ICONS_PATH}{topicrow.TOPIC_ICON_IMG}); background-repeat: no-repeat;"<!-- ENDIF --> title="{topicrow.TOPIC_FOLDER_IMG_ALT}">
|
|
<!-- IF topicrow.S_UNREAD_TOPIC --><a href="{topicrow.U_NEWEST_POST}">{NEWEST_POST_IMG}</a> <!-- ENDIF --><i class="pcon {topicrow.TOPIC_IMG_STYLE}"></i><a href="{topicrow.U_VIEW_TOPIC}" class="topictitle">{topicrow.TOPIC_TITLE}</a>
|
|
<!-- IF topicrow.S_TOPIC_UNAPPROVED or topicrow.S_POSTS_UNAPPROVED --><a href="{topicrow.U_MCP_QUEUE}">{topicrow.UNAPPROVED_IMG}</a> <!-- ENDIF -->
|
|
<!-- IF topicrow.S_TOPIC_REPORTED --><a href="{topicrow.U_MCP_REPORT}">{REPORTED_IMG}</a><!-- ENDIF --><br />
|
|
<!-- IF topicrow.PAGINATION --><strong class="pagination"><span>{topicrow.PAGINATION}</span></strong><!-- ENDIF -->
|
|
<!-- IF topicrow.ATTACH_ICON_IMG -->{topicrow.ATTACH_ICON_IMG} <!-- ENDIF -->{L_POST_BY_AUTHOR} {topicrow.TOPIC_AUTHOR_FULL} » {topicrow.FIRST_POST_TIME}
|
|
</td>
|
|
<td class="lastpost"><span><dfn>{L_LAST_POST} </dfn>{L_POST_BY_AUTHOR} {topicrow.LAST_POST_AUTHOR_FULL}
|
|
<a href="{topicrow.U_LAST_POST}">{LAST_POST_IMG}</a> <br />{topicrow.LAST_POST_TIME}</span>
|
|
</td>
|
|
<td class="mark"><center><input type="checkbox" name="t[{topicrow.TOPIC_ID}]" id="t{topicrow.TOPIC_ID}" /></center></td>
|
|
|
|
</tr>
|
|
<!-- END topicrow -->
|
|
</tbody>
|
|
</table>
|
|
|
|
<!-- ELSEIF S_TOPIC_NOTIFY -->
|
|
<p><strong>{L_NO_WATCHED_TOPICS}</strong></p>
|
|
<!-- ENDIF -->
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<!-- IF .topicrow or .forumrow -->
|
|
<fieldset class="row-fluid display-actions">
|
|
<input type="submit" name="unwatch" value="{L_UNWATCH_MARKED}" class="btn btn-primary" /> •
|
|
<a class="btn btn-small" href="#" onclick="marklist('ucp', 't', true); marklist('ucp', 'f', true); return false;">{L_MARK_ALL}</a> • <a class="btn btn-small" href="#" onclick="marklist('ucp', 't', false); marklist('ucp', 'f', false); return false;">{L_UNMARK_ALL}</a>
|
|
{S_FORM_TOKEN}
|
|
</fieldset>
|
|
<!-- ENDIF -->
|
|
</form>
|
|
|
|
<!-- INCLUDE ucp_footer.html -->
|