Files
fetsite/app/views/themengruppen/faqs.html.erb
Andreas Stephanides ca4e2ef7cd faq fragezeichen fix
2015-04-09 09:14:01 +02:00

33 lines
794 B
Plaintext

<h1><%= I18n.t("themengruppe.faqs") %></h1>
<div class="content-wrap content-column">
<% @themengruppen.each do |tg| %>
<% themen = tg.themen.accessible_by(current_ability, :show).order(:priority).reverse_order.select{|t| !t.fragen.empty?} %>
<% if can?(:show, tg) && !themen.empty? %>
<div class="contentbox">
<a name="themengruppe_<%=tg.id.to_s%>"></a>
<h2> <%= tg.title%></h2>
<ul>
<% tg.themen.order(:priority).reverse.each do |t| %>
<% if can?(:show, t) && !t.fragen.empty? %>
<li> <%= t.title %>
<ul>
<% t.fragen.order(:title).each do |f| %>
<li>
<b> <%= f.title %></b>
<p> <%= raw(f.text) %></p>
</li>
<% end %>
</ul>
</li>
<% end %>
<% end %>
</ul>
</div>
<% end %>
<% end %>
</div>