Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 388 Bytes

README.md

File metadata and controls

16 lines (14 loc) · 388 Bytes

DeepDevelop Table Builder

gem 'dd_table', github: 'deepdevelop/dd_table_rails'
<%= table_for Article, @articles do |t| %>
  <%= t.column :title %>
  <%= t.column 'actions' do |article| %>
    <%= link_to 'Show', article %>
    <%= link_to 'Edit', edit_article_path(article) %>
    <%= link_to 'Destroy', article, method: :delete, remote: true %>
  <% end %>
<% end %>