There can only be one <main> tag in a document, and we've already got a <main> tag in the management layout.
28 lines
922 B
Plaintext
28 lines
922 B
Plaintext
<div class="row">
|
|
<div class="proposals-list">
|
|
<a id="print_link" href="javascript:window.print();" class="button warning float-right">
|
|
<%= t("management.proposals.print.print_button") %>
|
|
</a>
|
|
|
|
<%= image_tag "header_print_proposals.jpg", class: "for-print-only" %>
|
|
|
|
<div class="filters">
|
|
<span class="for-print-only date-for-print"><%= l Date.current, format: :long %></span>
|
|
|
|
<h2 class="inline-block">
|
|
<span class="not-print"><%= t("proposals.index.select_order_long") %></span>
|
|
<span class="for-print-only"><%= t("management.print.proposals_title") %></span>
|
|
</h2>
|
|
<div class="not-print">
|
|
<%= render "shared/order_links", i18n_namespace: "proposals.index" %>
|
|
</div>
|
|
</div>
|
|
|
|
<%= render @proposals %>
|
|
|
|
<div class="for-print-only">
|
|
<p><strong><%= t("management.print.proposals_info") %></strong></p>
|
|
</div>
|
|
</div>
|
|
</div>
|