summaryrefslogblamecommitdiffstats
path: root/views/submitted.erb
blob: d085b82151e764e85f273cb9085426aefe670b78 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                            
                                          









                                                    





                                  

                                                     



                             
<h1>Takk for at du vil være med på Norsk Urskog 2016!</h1>

<p>Du har registrert følgende opplysninger:</p>

<p>Band/Artist:</p>
<ul>
  <li>Bandnavn: <%= @band.name %></li>
  <li>Hjemsted: <%= @band.city %></li>
  <li>Webside: <%= @band.website %></li>
  <li>Plateselskap: <%= @band.label %></li>
  <li>Kort bio: <%= @band.short_bio %></li>
  <li>Medlemmer: <%= @band.members %></li>
</ul>

<p>Kontakt:</p>
<ul>
  <li>Kontaktperson: <%= @band.contact.name %></li>
  <li>Kontaktadresse: <%= @band.contact.addr %></li>
  <li>Telefon: <%= @band.contact.phone %></li>
  <li>Epost: <%= @band.contact.email %></li>
</ul>

<p>Låter:</p>
<ul>
  <% @band.songs.each do |s| %>
    <li>
      <%= s.title %><br>
      Spilletid: <%= s.time %><br>
      Utøvere: <%= s.performers.join(', ') %><br>
      Låtskrivere: <%= s.composers.join(', ') %><br>
      Merknad: <%= s.notes %>
    </li>
  <% end %>
</ul>