54 lines
1.4 KiB
Plaintext
54 lines
1.4 KiB
Plaintext
<%= back_link_to %>
|
|
|
|
<%= link_to t('shared.edit'), edit_admin_question_path(@question),
|
|
class: "button hollow float-right" %>
|
|
|
|
<div class="clear"></div>
|
|
|
|
<div class="row">
|
|
<div class="small-12 medium-9 column">
|
|
<strong><%= t("admin.questions.show.title") %></strong>
|
|
<h1><%= @question.title %></h1>
|
|
|
|
<% if @question.proposal.present? %>
|
|
<p>
|
|
<strong><%= t("admin.questions.show.proposal") %></strong>
|
|
<br>
|
|
<%= link_to @question.proposal.title, proposal_path(@question.proposal) %>
|
|
</p>
|
|
<% end %>
|
|
|
|
<p>
|
|
<strong><%= t("admin.questions.show.author") %></strong>
|
|
<br>
|
|
<%= link_to @question.author.name, user_path(@question.author) %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong><%= t("admin.questions.show.valid_answers") %></strong>
|
|
</p>
|
|
|
|
<% @question.valid_answers.each do |answer| %>
|
|
<span class="button">
|
|
<%= answer %>
|
|
</span>
|
|
<% end %>
|
|
|
|
<% if @question.video_url.present? %>
|
|
<p>
|
|
<strong><%= t("admin.questions.show.video_url") %></strong>
|
|
<br>
|
|
<a href="<%= @question.video_url %>"><%= @question.video_url %></a>
|
|
</p>
|
|
<% end %>
|
|
|
|
<% if @question.documents.any? %>
|
|
<p>
|
|
<strong><%= t("admin.questions.show.documents") %></strong>
|
|
<br>
|
|
<a href="<%= @question.documents.first.attachment.url %>"><%= @question.documents.first.title %></a>
|
|
</p>
|
|
<% end %>
|
|
</div>
|
|
</div>
|