Files
fetsite/app/views/themen/index.html.erb
2015-07-16 21:03:06 +02:00

20 lines
421 B
Plaintext

<h1>Listing theme1n</h1><h2>drafts </h2>
<% @themen_drafts.each do |thema| %>
<%= render partial:"themen/small", object: thema %>
<% end %>
<% @themen_outdated.each do |thema| %>
<%= render partial:"themen/small", object: thema %>
<% end %>
<h2>All</h2>
<% @themen.each do |thema| %>
<%= render partial:"themen/small", object: thema %>
<% render thema %>
<% end %>
<br />
<%= link_to 'New Thema', new_thema_path %>