39 lines
1.1 KiB
Plaintext
39 lines
1.1 KiB
Plaintext
<% copies.times do |copy_index| %>
|
|
<div class="page">
|
|
<% has_logo = local_assigns[:logo] %>
|
|
<table class="heading-table">
|
|
<tr>
|
|
<td>
|
|
<% if has_logo %>
|
|
<div class="logo">
|
|
<%= render "blank_contracts/logo", logo: logo %>
|
|
</div>
|
|
<% end %>
|
|
</td>
|
|
<td>
|
|
<img src="<%= qr_codes[copy_index] %>" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td> </td>
|
|
<td class="serial-number"><%= serial_numbers[copy_index] %></td>
|
|
</tr>
|
|
<tr>
|
|
<td> </td>
|
|
<td><strong><%= t '.do_not_copy_warning' %></strong></td>
|
|
</tr>
|
|
</table>
|
|
<hr>
|
|
<% if contract_template.body.present? %>
|
|
<%= contract_template.body %>
|
|
<br/>
|
|
<% end %>
|
|
<% if contract_template.guardian_clause.present? %>
|
|
<p class="text-left"><strong>Guardian Clause</strong></p>
|
|
<%= contract_template.guardian_clause %>
|
|
<% end %>
|
|
</div>
|
|
<div class="page">
|
|
<%= render "blank_contracts/signature_page", releasable: releasable, contract_template: contract_template %>
|
|
</div>
|
|
<% end %> |