Sha256: 46565732653428b91c5628f5782864a9903a6c4fcb80f8982503e2c17d7d923a
Contents?: true
Size: 910 Bytes
Versions: 14
Compression:
Stored size: 910 Bytes
Contents
- @title= "My Articles" %p - @page_title = 'All Articlces' = paginate @my_articles %table#article-table %tr %th Title %th Description %th Created %th Updated %th Delete %th Edit - @my_articles.each do |article| %tr %td= link_to article.title, :controller=>"articles", :action=>"show", :article_id => article.id %td= article.text.html_safe %td= article.created_at.strftime('%m/%d/%Y') %td= article.updated_at.strftime('%m/%d/%Y') %td(align='center')= link_to image_tag('delete.png', style:'border:none; float:none;'), {controller: "articles", action: "destroy", article_id: article.id}, data: { confirm: "Please Confirm" } %td(align='center')= link_to image_tag('pencil.png', style:'border:none; float:none;'), {controller: "jinda", action: "init", s: 'articles:xedit_article', article_id: article.id}, data: { confirm: "Please Confirm" }
Version data entries
14 entries across 14 versions & 2 rubygems