ensl.org/app/views/articles/admin.html.erb
2014-04-27 01:34:38 +01:00

30 lines
910 B
Text

<div class="admin articles">
<h1 class="title">Articles Admin</h1>
<% @articles.each do |key, articles| %>
<h3 class="title"><%=h key %></h3>
<table class="striped">
<tr>
<th class="title">Title</th>
<th class="category">Category</th>
<th class="created">Created</th>
<th class="author">Author</th>
<th class="actions"></th>
</tr>
<% for article in articles %>
<tr>
<td><%= namelink article %></td>
<td><%= h article.category %></td>
<td><%= shorttime article.created_at %></td>
<td><%= namelink article.user %></td>
<td class="actions">
<%= link_to icon('pencil'), edit_article_path(article) %>
<%= link_to icon('times'), article, confirm: 'Are you sure?', method: :delete %>
</td>
</tr>
<% end %>
</table>
<% end %>
</div>