diff --git a/app/views/themengruppen/faqs.html.erb b/app/views/themengruppen/faqs.html.erb
index 4dc64ce..68fc21f 100644
--- a/app/views/themengruppen/faqs.html.erb
+++ b/app/views/themengruppen/faqs.html.erb
@@ -1,11 +1,14 @@
+
<% @themengruppen.each do |tg| %>
+ <% if can? :show, tg %>
<%= tg.title%>
<% tg.themen.order(:priority).reverse.each do |t| %>
+ <% if can? :show t %>
- <%= t.title %>
<% t.fragen.each do |f| %>
-
@@ -18,8 +21,10 @@
<% end %>
+ <% end %>
<% end %>
+ <% end %>