Improve readability in some views by adding empty lines

This commit is contained in:
Thibault Jouan 2011-12-30 10:40:19 +00:00
parent a7451c5302
commit c764265af2
4 changed files with 5 additions and 0 deletions

View File

@ -1,7 +1,9 @@
= link_to 'Add a track', new_track_path
%ul
- @playlists.each do |p|
%li= p.name
%ul
- @tracks.each do |t|
%li= t.name

View File

@ -1,4 +1,5 @@
= link_to 'Create playlist', new_playlist_path
%ul
- @playlists.each do |p|
%li

View File

@ -1,4 +1,5 @@
%h1= @track.name
- if @track.sound?
%audio{:src => sound_path(@track.sound), :controls => true, :autoplay => true}
Your browser does not support the audio element

View File

@ -3,6 +3,7 @@
%ul
- @user.errors.full_messages.each do |m|
%li= m
%table
%tbody
%tr