diff options
Diffstat (limited to 'phpBB/styles/prosilver/template/viewtopic_body.html')
| -rw-r--r-- | phpBB/styles/prosilver/template/viewtopic_body.html | 17 | 
1 files changed, 14 insertions, 3 deletions
diff --git a/phpBB/styles/prosilver/template/viewtopic_body.html b/phpBB/styles/prosilver/template/viewtopic_body.html index e2f04db3e1..07215708a9 100644 --- a/phpBB/styles/prosilver/template/viewtopic_body.html +++ b/phpBB/styles/prosilver/template/viewtopic_body.html @@ -1,6 +1,7 @@  <!-- INCLUDE overall_header.html -->  <h2 class="topic-title"><!-- EVENT viewtopic_topic_title_prepend --><a href="{U_VIEW_TOPIC}">{TOPIC_TITLE}</a><!-- EVENT viewtopic_topic_title_append --></h2> +<!-- EVENT viewtopic_topic_title_after -->  <!-- NOTE: remove the style="display: none" when you want to have the forum description on the topic body -->  <!-- IF FORUM_DESC --><div style="display: none !important;">{FORUM_DESC}<br /></div><!-- ENDIF --> @@ -40,6 +41,7 @@  	</div>  	<!-- INCLUDE viewtopic_topic_tools.html --> +	<!-- EVENT viewtopic_dropdown_top_custom -->  	<!-- IF S_DISPLAY_SEARCHBOX -->  		<div class="search-box" role="search"> @@ -67,6 +69,8 @@  	<!-- EVENT viewtopic_body_pagination_top_after -->  </div> +<!-- EVENT viewtopic_body_poll_before --> +  <!-- IF S_HAS_POLL -->  	<form method="post" action="{S_POLL_ACTION}" data-ajax="vote_poll" class="topic_poll"> @@ -80,7 +84,7 @@  			<fieldset class="polls">  			<!-- BEGIN poll_option -->  				<!-- EVENT viewtopic_body_poll_option_before --> -				<dl class="<!-- IF poll_option.POLL_OPTION_VOTED -->voted<!-- ENDIF --><!-- IF poll_option.POLL_OPTION_MOST_VOTES --> most-votes<!-- ENDIF -->"<!-- IF poll_option.POLL_OPTION_VOTED --> title="{L_POLL_VOTED_OPTION}"<!-- ENDIF --> data-poll-option-id="{poll_option.POLL_OPTION_ID}"> +				<dl class="<!-- IF poll_option.POLL_OPTION_VOTED -->voted<!-- ENDIF --><!-- IF poll_option.POLL_OPTION_MOST_VOTES --> most-votes<!-- ENDIF -->"<!-- IF poll_option.POLL_OPTION_VOTED --> title="{L_POLL_VOTED_OPTION}"<!-- ENDIF --> data-alt-text="{L_POLL_VOTED_OPTION}" data-poll-option-id="{poll_option.POLL_OPTION_ID}">  					<dt><!-- IF S_CAN_VOTE --><label for="vote_{poll_option.POLL_OPTION_ID}">{poll_option.POLL_OPTION_CAPTION}</label><!-- ELSE -->{poll_option.POLL_OPTION_CAPTION}<!-- ENDIF --></dt>  					<!-- IF S_CAN_VOTE --><dd style="width: auto;" class="poll_option_select"><!-- IF S_IS_MULTI_CHOICE --><input type="checkbox" name="vote_id[]" id="vote_{poll_option.POLL_OPTION_ID}" value="{poll_option.POLL_OPTION_ID}"<!-- IF poll_option.POLL_OPTION_VOTED --> checked="checked"<!-- ENDIF --> /><!-- ELSE --><input type="radio" name="vote_id[]" id="vote_{poll_option.POLL_OPTION_ID}" value="{poll_option.POLL_OPTION_ID}"<!-- IF poll_option.POLL_OPTION_VOTED --> checked="checked"<!-- ENDIF --> /><!-- ENDIF --></dd><!-- ENDIF -->  					<dd class="resultbar<!-- IF not S_DISPLAY_RESULTS --> hidden<!-- ENDIF -->"><div class="<!-- IF poll_option.POLL_OPTION_PCT < 20 -->pollbar1<!-- ELSEIF poll_option.POLL_OPTION_PCT < 40 -->pollbar2<!-- ELSEIF poll_option.POLL_OPTION_PCT < 60 -->pollbar3<!-- ELSEIF poll_option.POLL_OPTION_PCT < 80 -->pollbar4<!-- ELSE -->pollbar5<!-- ENDIF -->" style="width:{poll_option.POLL_OPTION_PERCENT_REL};">{poll_option.POLL_OPTION_RESULT}</div></dd> @@ -120,6 +124,8 @@  	<hr />  <!-- ENDIF --> +<!-- EVENT viewtopic_body_poll_after --> +  <!-- BEGIN postrow -->  	<!-- EVENT viewtopic_body_postrow_post_before -->  	<!-- IF postrow.S_FIRST_UNREAD --> @@ -212,9 +218,10 @@  			<h3 <!-- IF postrow.S_FIRST_ROW -->class="first"<!-- ENDIF -->><!-- IF postrow.POST_ICON_IMG --><img src="{T_ICONS_PATH}{postrow.POST_ICON_IMG}" width="{postrow.POST_ICON_IMG_WIDTH}" height="{postrow.POST_ICON_IMG_HEIGHT}" alt="" /> <!-- ENDIF --><a href="#p{postrow.POST_ID}">{postrow.POST_SUBJECT}</a></h3> +		<!-- DEFINE $SHOW_POST_BUTTONS = (postrow.U_EDIT or postrow.U_DELETE or postrow.U_REPORT or postrow.U_WARN or postrow.U_INFO or postrow.U_QUOTE) -->  		<!-- EVENT viewtopic_body_post_buttons_list_before -->  		<!-- IF not S_IS_BOT --> -			<!-- IF postrow.U_EDIT or postrow.U_DELETE or postrow.U_REPORT or postrow.U_WARN or postrow.U_INFO or postrow.U_QUOTE --> +			<!-- IF $SHOW_POST_BUTTONS -->  				<ul class="post-buttons">  					<!-- EVENT viewtopic_body_post_buttons_before -->  					<!-- IF postrow.U_EDIT --> @@ -271,7 +278,9 @@  			<form method="post" class="mcp_approve" action="{postrow.U_APPROVE_ACTION}">  				<p class="post-notice deleted">  					<strong>{L_POST_DELETED_ACTION}</strong> -					<input class="button2" type="submit" value="{L_DELETE}" name="action[disapprove]" /> +					<!-- IF postrow.S_DELETE_PERMANENT --> +						<input class="button2" type="submit" value="{L_DELETE}" name="action[delete]" /> +					<!-- ENDIF -->  					<input class="button1" type="submit" value="{L_RESTORE}" name="action[restore]" />  					<input type="hidden" name="post_id_list[]" value="{postrow.POST_ID}" />  					{S_FORM_TOKEN} @@ -377,6 +386,8 @@  			</div>  		</div>  	<!-- ENDIF --> +	 +	<!-- EVENT viewtopic_dropdown_bottom_custom -->  	<!-- IF .pagination or TOTAL_POSTS -->  		<div class="pagination">  | 
