2014-05-02 08:06:01 +00:00
|
|
|
<table class="articles archive striped">
|
2014-03-23 00:22:25 +00:00
|
|
|
<tr>
|
2014-05-02 08:06:01 +00:00
|
|
|
<th class="title">Title</th>
|
|
|
|
<th class="date">Date</th>
|
|
|
|
<th class="author">Author</th>
|
|
|
|
<th class="actions"></th>
|
2014-03-23 00:22:25 +00:00
|
|
|
</tr>
|
|
|
|
|
|
|
|
<% articles.each do |article| %>
|
2014-05-02 08:06:01 +00:00
|
|
|
<tr>
|
2014-03-23 00:22:25 +00:00
|
|
|
<td><%= namelink article, 35 %></td>
|
|
|
|
<td><%= shortdate article.created_at %></td>
|
|
|
|
<td><%= namelink article.user %></td>
|
2014-05-02 08:06:01 +00:00
|
|
|
<td class="actions">
|
2014-03-23 00:22:25 +00:00
|
|
|
<% if article.can_update? cuser %>
|
2014-05-02 08:06:01 +00:00
|
|
|
<%= link_to icon('pencil'), edit_article_path(article) %>
|
2014-03-23 00:22:25 +00:00
|
|
|
<% end; if article.can_destroy? cuser %>
|
2014-05-02 08:06:01 +00:00
|
|
|
<%= link_to icon('times'), article, confirm: 'Are you sure?', method: :delete %>
|
2014-03-23 00:22:25 +00:00
|
|
|
<% end %>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
</table>
|