philomena/lib/philomena_web/templates/topic/poll/_display.html.slime

20 lines
548 B
Text
Raw Normal View History

2019-12-20 04:41:19 +01:00
= cond do
- @poll.hidden_from_users ->
.walloftext
.block.block--fixed.block--warning
h1 This poll has been deleted
p
' Reason:
strong
= @poll.deletion_reason || "Unknown (likely deleted in error). Please contact a moderator."
2019-11-18 19:09:59 +01:00
2019-12-20 04:41:19 +01:00
- not @voted and not is_nil(@conn.assigns.current_user) ->
.poll
.poll-area
= render PhilomenaWeb.Topic.PollView, "_vote_form.html", assigns
- true ->
.poll
.poll-area
= render PhilomenaWeb.Topic.PollView, "_results.html", assigns