Sha256: b7ead0dda836641a2dab7d3e851cd92cabea8fcec24425497042d4d373b98324

Contents?: true

Size: 756 Bytes

Versions: 8

Compression:

Stored size: 756 Bytes

Contents

  <% @page_heading = "Articles in #{h @category.name}" %>

  <% content_for('tasks') do %>
    <%= task_edit 'Edit this category', @category.id %>
  <% end %>

  <%= start_form_tag :action=>"new" %>
  <div class="list">
    <table cellspacing="1" cellpadding="0">
    <% for article in @category.articles -%>
    <tr  <%= alternate_class -%>>
      <td><%= image_tag 'checked.gif' %> <%= link_to h(article.title), :controller => "content", :action => "show", :id => article.id %></td>
      <td><%= distance_of_time_in_words_to_now article.published_at %> ago</td>
      <td><%= link_to pluralize(article.comments.size, 'comment'), :controller => 'comments', :article_id => article, :action => 'list' %></td>
    </tr>
    <% end -%>
    </table>
  </div>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
typo-3.99.0 app/views/admin/categories/show.rhtml
typo-3.99.2 app/views/admin/categories/show.rhtml
typo-3.99.1 app/views/admin/categories/show.rhtml
typo-3.99.3 app/views/admin/categories/show.rhtml
typo-4.0.2 app/views/admin/categories/show.rhtml
typo-4.0.1 app/views/admin/categories/show.rhtml
typo-3.99.4 app/views/admin/categories/show.rhtml
typo-4.0.0 app/views/admin/categories/show.rhtml