scube-server/app/views/playlists/index.html.haml
Thibault Jouan 301205d3f0 Implement playlist edit feature
* Display playlists as links in index
* Move playlist form in a partial
2011-07-13 17:52:27 +00:00

6 lines
132 B
Plaintext

= link_to 'Create playlist', new_playlist_path
%ul
- @playlists.each do |p|
%li
= link_to p.name, edit_playlist_path(p)