Invitation to <%=h @party.name %>

You're invited to <%=h @party.name %> on <%=h @party.begins_at.strftime '%A, %B %d, %Y' %>, from <%=h @party.begins_at.strftime '%I:%M %p' %> to <%=h @party.ends_at.strftime '%I:%M %p' %>!

There are many parties, but only this one lives at:
<%= link_to party_url(@party), {}, :id => 'party_link' %>

Details

Why: <%=h @party.description %>

Where: <%=h @party.location %>

Who: <% form_for :guest, :url => guests_url do |f| %> <%= f.hidden_field :party_permalink, :value => @party.permalink %> <%= f.text_field :name %> <%= f.check_box :attending, :checked => true %> attending <%= submit_tag 'RSVP', :id => 'rsvp' %> <% end %>