1
0
Fork 0
oldhaven/app/views/artist/_page.html.haml

33 lines
1.3 KiB
Plaintext
Raw Normal View History

2011-10-20 11:01:57 +00:00
- if @artist.status == 0
2011-09-09 22:13:02 +00:00
.alert-message.warning
%p= I18n.t 'search.loading'
2011-09-08 01:48:33 +00:00
.row.artist-info
.span4.columns.pic
2011-10-20 11:01:57 +00:00
= image_tag @artist.pic_url unless @artist.pic_url.nil?
2011-09-08 01:48:33 +00:00
.span7.columns.desc
2011-10-20 11:01:57 +00:00
%h2= @artist.name
= @artist.desc unless @artist.desc.nil?
- unless @artist.artist_links.empty?
2011-09-26 13:34:18 +00:00
.service-icons
2011-10-20 11:01:57 +00:00
- @artist.artist_links.each do |service|
2011-09-26 13:34:18 +00:00
- if ['wikipedia', 'microblog', 'official_homepage', 'social_network'].include?service.service
%a.foreign-link{ :href => service.url, :target => '_blank' }
= image_tag 'services/'+service.service+(service.service == 'official_homepage' ? '.png' : '.ico')
2011-09-08 01:48:33 +00:00
2011-09-09 22:13:02 +00:00
2011-10-20 11:01:57 +00:00
- @artist.albums.each do |album|
2011-09-08 01:48:33 +00:00
.row.album
.span4.columns.art
2011-10-20 11:01:57 +00:00
%img{ :src => album.pic_url }
2011-09-08 01:48:33 +00:00
.button-container
2011-10-20 11:01:57 +00:00
%a.btn.add-album{ :'data-album-id' => album.id }= I18n.t 'player.add'
2011-09-08 01:48:33 +00:00
.span7.columns.tracks
2011-10-20 11:01:57 +00:00
%h3{ :'data-album-id' => album.id }= album.name + " (" + album.year.to_s + ")"
2011-09-08 01:48:33 +00:00
%table.zebra-striped.tracklist
2011-10-20 11:01:57 +00:00
- album.tracks.each do |track|
2011-09-08 01:48:33 +00:00
%tr
2011-10-20 11:01:57 +00:00
%td.song-title= track.name
2011-09-26 13:34:18 +00:00
%td.song-duration
2011-10-20 11:01:57 +00:00
.s-duration= (track.duration != '0:00' ? track.duration : ' '.html_safe)
.s-add{ :'data-album-id' => album.id, :'data-id' => track.id }= I18n.t 'player.add_one'