NEW: FAQs in Themen eingefügt

This commit is contained in:
HausdorffHimself
2013-08-19 21:05:46 +02:00
parent 80fa19680b
commit 65b0ad8c19
5 changed files with 34 additions and 5 deletions

View File

@@ -10,4 +10,4 @@
<%= link_to 'Edit', edit_frage_path(@frage) %> |
<%= link_to 'Back', fragen_path %>
<%= link_to 'Back', @frage.thema %>

View File

@@ -1,3 +1,16 @@
<%= raw(small.text) %>
<br/>
<%= link_to 'Edit', edit_thema_path(small) %>
<%= raw("<b>FAQs:</b>") unless small.fragen.empty? %>
<br/>
<% small.fragen.each do |frage| %>
<p>
<b> <%= frage.title %> </b> <br/>
<%= raw(frage.text) %>
</p>
<br/>
<% end %>
<%= link_to 'Edit', small %>

View File

@@ -8,3 +8,18 @@
<%= 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 %>
<br/>
<%= link_to 'Neue Frage', new_frage_path %>

View File

@@ -25,5 +25,6 @@
<br/><br/>
<%= link_to 'Edit', edit_themengruppe_path(@themengruppe) %> |
<%= link_to 'Back', themengruppen_path %>