Skip to content
Snippets Groups Projects
Select Git revision
  • eced4a342d572565fe655832f21c484f91cf2e23
  • test default protected
  • master protected
  • feat/custom-css
  • feat/redesign-improvements-10
  • feat/redesign-improvements-8
  • feat/redesign-fixes-3
  • feat/pirstan-changes
  • feat/separate-import-thread
  • feat/dary-improvements
  • features/add-pdf-page
  • features/add-typed-table
  • features/fix-broken-calendar-categories
  • features/add-embed-to-articles
  • features/create-mastodon-feed-block
  • features/add-custom-numbering-for-candidates
  • features/add-timeline
  • features/create-wordcloud-from-article-page
  • features/create-collapsible-extra-legal-info
  • features/extend-hero-banner
  • features/add-link-to-images
21 results

person_header.html

Blame
  • posting_poll_body.html 2.29 KiB
    <div class="panel bg3" id="poll-panel">
    	<div class="inner">
    
    	<!-- IF S_SHOW_POLL_BOX -->
    	<p>{L_ADD_POLL_EXPLAIN}</p>
    	<!-- ENDIF -->
    
    	<fieldset class="fields2">
    	<!-- IF S_POLL_DELETE -->
    		<dl>
    			<dt><label for="poll_delete">{L_POLL_DELETE}{L_COLON}</label></dt>
    			<dd><label for="poll_delete"><input type="checkbox" name="poll_delete" id="poll_delete"<!-- IF S_POLL_DELETE_CHECKED --> checked="checked"<!-- ENDIF --> /> </label></dd>
    		</dl>
    	<!-- ENDIF -->
    
    	<!-- IF S_SHOW_POLL_BOX -->
    		<dl>
    			<dt><label for="poll_title">{{ lang('POLL_QUESTION') ~ lang('COLON') }}</label></dt>
    			<dd><input type="text" name="poll_title" id="poll_title" maxlength="100" value="{{ POLL_TITLE }}" class="inputbox" /></dd>
    		</dl>
    		<dl>
    			<dt><label for="poll_option_text">{L_POLL_OPTIONS}{L_COLON}</label><br /><span>{L_POLL_OPTIONS_EXPLAIN}</span></dt>
    			<dd><textarea name="poll_option_text" id="poll_option_text" rows="5" cols="35" class="inputbox">{POLL_OPTIONS}</textarea></dd>
    		</dl>
    
    		<hr class="dashed" />
    
    		<dl>
    			<dt><label for="poll_max_options">{L_POLL_MAX_OPTIONS}{L_COLON}</label></dt>
    			<dd><input type="number" min="0" max="999" name="poll_max_options" id="poll_max_options" value="{POLL_MAX_OPTIONS}" class="inputbox autowidth" /></dd>
    			<dd>{L_POLL_MAX_OPTIONS_EXPLAIN}</dd>
    		</dl>
    		<dl>
    			<dt><label for="poll_length">{L_POLL_FOR}{L_COLON}</label></dt>
    			<dd><label for="poll_length"><input type="number" min="0" max="999" name="poll_length" id="poll_length" value="{POLL_LENGTH}" class="inputbox autowidth" /> {L_DAYS}</label></dd>
    			<dd>{L_POLL_FOR_EXPLAIN}</dd>
    		</dl>
    
    		<!-- IF S_POLL_VOTE_CHANGE -->
    			<hr class="dashed" />
    
    			<dl>
    				<dt><label for="poll_vote_change">{L_POLL_VOTE_CHANGE}{L_COLON}</label></dt>
    				<dd><label for="poll_vote_change"><input type="checkbox" id="poll_vote_change" name="poll_vote_change"{VOTE_CHANGE_CHECKED} /> {L_POLL_VOTE_CHANGE_EXPLAIN}</label></dd>
    			</dl>
    		<!-- ENDIF -->
    		<hr class="dashed" />
    		<dl>
    			<dt><label for="poll_show_results">{L_POLL_SHOW_RESULTS}{L_COLON}</label></dt>
    			<dd><label for="poll_show_results"><input type="checkbox" id="poll_show_results" name="poll_show_results"{SHOW_RESULTS_CHECKED} /> {L_POLL_SHOW_RESULTS_EXPLAIN}</label></dd>
    		</dl>
    	<!-- ENDIF -->
    
    	<!-- EVENT posting_poll_body_options_after -->
    	</fieldset>
    
    	</div>
    </div>