Files
old-holivud2/app/views/blank_contracts/_signature_page.html.erb
2020-05-31 22:38:19 +02:00

40 lines
2.1 KiB
Plaintext

<p class="heading"><strong><u><%= t ".heading" %></u></strong></p>
<p><%= t ".instructions", releasable_name: "#{releasable.model_name.name.titleize}" %></p>
<% # Signer information %>
<dl>
<% # Only guardian signs if talent is a minor %>
<% if contract_template.guardian_clause.blank? %>
<%= description_list_pair "Signature:", "___________________________________________" %>
<% end %>
<%= description_list_pair "Name:", "___________________________________________" %>
<%= description_list_pair "Contact Address:", "___________________________________________" %>
<%= description_list_pair "Contact Phone:", "___________________________________________" %>
<%= description_list_pair "Contact Email:", "___________________________________________" %>
<% if releasable.model_name == "AppearanceRelease" %>
<%= description_list_pair "Person Date of Birth:", "___________________________________________" %>
<% end %>
<%= description_list_pair "Signed On:", "___________________________________________" %>
<% if releasable.model_name == "LocationRelease" %>
<%= description_list_pair "Filming Started On:", "___________________________________________" %>
<%= description_list_pair "Filming Ended On:", "___________________________________________" %>
<% end %>
<% if contract_template.fee? %>
<%= description_list_pair "Fee:", number_to_currency(contract_template.fee) %>
<% end %>
</dl>
<% if contract_template.guardian_clause.present? %>
<% # Guardian information %>
<br/>
<p class="text-left"><strong>Guardian Information</strong></p>
<dl>
<%= description_list_pair "Signature:", "___________________________________________" %>
<%= description_list_pair "Guardian Name:", "___________________________________________" %>
<%= description_list_pair "Guardian Address:", "___________________________________________" %>
<%= description_list_pair "Guardian Phone:", "___________________________________________" %>
<%= description_list_pair "Signed On:", "___________________________________________" %>
</dl>
<% end %>