forked from bofh/fetsite
20 lines
421 B
Plaintext
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 %>
|