| <%= t("admin.polls.show.table_title") %> | <%= t("admin.actions.actions") %> |
|---|---|
| <%= link_to question.title, admin_question_path(question) %> <% if question.proposal.present? %> <%= link_to t("admin.polls.show.see_proposal"), proposal_path(question.proposal), target: "_blank" %> <% end %> |
<%= link_to t("admin.polls.show.edit_answers"), admin_question_path(question),
class: "button hollow expanded" %>
<%= link_to t("shared.edit"), edit_admin_question_path(question),
class: "button hollow expanded" %>
<%= link_to t("shared.delete"), admin_question_path(question),
class: "button hollow alert expanded",
method: :delete %>
|