kastner (owner)

Revisions

gist: 126851 Download_button fork
public
Public Clone URL: git://gist.github.com/126851.git
Embed All Files: show embed
index.html.erb #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<% content_tag_for :ul, @books do %>
  <% @books.each do |book| %>
    <% content_tag_for :li, book do %>
      <%= h book.title %> by <%= h book.author %>
    <% end %>
  <% end %>
<% end %>
 
<br />
 
<%= sortable_element dom_id(@books) %>
 
<%= link_to 'New book', new_book_path %>