mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-03 04:17:34 -05:00
53 lines
1.7 KiB
Handlebars
53 lines
1.7 KiB
Handlebars
<div>
|
|
<div class="poll-container">
|
|
{{#if showingResults}}
|
|
{{#if isNumber}}
|
|
{{poll-results-number poll=poll}}
|
|
{{else}}
|
|
{{poll-results-standard poll=poll}}
|
|
{{/if}}
|
|
{{else}}
|
|
<ul>
|
|
{{#each option in poll.options}}
|
|
{{poll-option option=option toggle="toggleOption"}}
|
|
{{/each}}
|
|
</ul>
|
|
{{/if}}
|
|
</div>
|
|
<div class="poll-info">
|
|
<p>
|
|
<span class="info-number">{{poll.voters}}</span>
|
|
<span class="info-text">{{votersText}}</span>
|
|
</p>
|
|
{{#if isMultiple}}
|
|
{{#if showingResults}}
|
|
<p>
|
|
<span class="info-number">{{totalVotes}}</span>
|
|
<span class="info-text">{{totalVotesText}}</span>
|
|
</p>
|
|
{{else}}
|
|
<p>{{{multipleHelpText}}}</p>
|
|
{{/if}}
|
|
{{/if}}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="poll-buttons">
|
|
{{#if isMultiple}}
|
|
{{d-button class="cast-votes" title="poll.cast-votes.title" label="poll.cast-votes.label" disabled=castVotesDisabled action="castVotes"}}
|
|
{{/if}}
|
|
|
|
{{#if showingResults}}
|
|
{{d-button class="toggle-results" title="poll.hide-results.title" label="poll.hide-results.label" icon="eye-slash" disabled=hideResultsDisabled action="toggleResults"}}
|
|
{{else}}
|
|
{{d-button class="toggle-results" title="poll.show-results.title" label="poll.show-results.label" icon="eye" disabled=showResultsDisabled action="toggleResults"}}
|
|
{{/if}}
|
|
|
|
{{#if canToggleStatus}}
|
|
{{#if isClosed}}
|
|
{{d-button class="toggle-status" title="poll.open.title" label="poll.open.label" icon="unlock-alt" action="toggleStatus"}}
|
|
{{else}}
|
|
{{d-button class="toggle-status btn-danger" title="poll.close.title" label="poll.close.label" icon="lock" action="toggleStatus"}}
|
|
{{/if}}
|
|
{{/if}}
|
|
</div>
|