Sha256: da735cd8bfa22750fe90dccbe07cfbb024c9d1d9777dfa03eddc6f7ccc0662bf

Contents?: true

Size: 433 Bytes

Versions: 15

Compression:

Stored size: 433 Bytes

Contents

%h1 Listing articles

%table
  %tr
    %th= t('.title')
    %th= t('.content')
    %th
    %th
    %th

  - @articles.each do |article|
    %tr
      %td= article.title
      %td= article.content
      %td= link_to 'Show', article
      %td= link_to 'Edit', edit_article_path(article)
      %td= link_to 'Destroy', article, :method => :delete, :data => { :confirm => 'Are you sure?' }

%br

= link_to 'New Article', new_article_path

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
translation_center-1.6.0 test/dummy/app/views/articles/index.html.haml
translation_center-1.5.9 test/dummy/app/views/articles/index.html.haml
translation_center-1.5.8 test/dummy/app/views/articles/index.html.haml
translation_center-1.5.7 test/dummy/app/views/articles/index.html.haml
translation_center-1.5.6 test/dummy/app/views/articles/index.html.haml
translation_center-1.5.5 test/dummy/app/views/articles/index.html.haml
translation_center-1.5.4 test/dummy/app/views/articles/index.html.haml
translation_center-1.5.3 test/dummy/app/views/articles/index.html.haml
translation_center-1.5.2 test/dummy/app/views/articles/index.html.haml
translation_center-1.5.1 test/dummy/app/views/articles/index.html.haml
translation_center-1.5.0 test/dummy/app/views/articles/index.html.haml
translation_center-1.4.1 test/dummy/app/views/articles/index.html.haml
translation_center-1.4.0 test/dummy/app/views/articles/index.html.haml
translation_center-1.3.1 test/dummy/app/views/articles/index.html.haml
translation_center-1.3.0 test/dummy/app/views/articles/index.html.haml