Files
fetsite/app/views/themen/show.html.erb

28 lines
651 B
Plaintext

<p id="notice"><%= notice %></p>
<h1><%= @thema.title %></h1>
<p>
<%= raw(@thema.text) %>
</p>
<%= link_to 'Edit', edit_thema_path(@thema) %> |
<%= link_to 'Back', themengruppe_path(@thema.themengruppe) %>
<h2>FAQs:</h2>
<% @thema.fragen.each do |frage| %>
<p>
<b> <%= frage.title %> </b> <br/>
<%= raw(frage.text) %>
<br/>
<%= link_to 'Edit', edit_frage_path(frage) %> |
<%= link_to 'Destroy',frage, method: :delete, data: { confirm: 'Are you sure?' } %>
</p>
<% end %>
<%= link_to 'Neue Frage', new_frage_path %> <br/>
<br/>
<h2>Attachments:</h2>
<%= render :partial => "themen/select", :object => @thema, :locals => { :editor => :false }%>