<%= notice %>
<%= @thema.title %>
<%= raw(@thema.text) %>
<%= link_to 'Edit', edit_thema_path(@thema) %> |
<%= link_to 'Back', themengruppe_path(@thema.themengruppe) %>
FAQs:
<% @thema.fragen.each do |frage| %>
<%= frage.title %>
<%= raw(frage.text) %>
<%= link_to 'Edit', edit_frage_path(frage) %> |
<%= link_to 'Destroy',frage, method: :delete, data: { confirm: 'Are you sure?' } %>
<% end %>
<%= link_to 'Neue Frage', new_frage_path %>
Attachments:
<% @thema.attachments.each do |attachment| %>
-
<%= link_to attachment.name, edit_thema_attachment_path(@thema,attachment) %> | <%= link_to 'Destroy',[@thema,attachment], method: :delete, data: { confirm: 'Are you sure?' } %>
<% end %>
<%= link_to 'Neues Attachment', new_thema_attachment_path(@thema) %>