mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2026-02-13 09:13:58 -05:00
13 lines
426 B
Plaintext
13 lines
426 B
Plaintext
<% unless estimates.empty? %>
|
|
|
|
<% estimates.sort.reverse.each do |estimate| %>
|
|
<div class="row">
|
|
<%= check_box_tag "estimate_ids[]", estimate.id, false, onchange: "updateLink()", class: "estimate-checkbox" %>
|
|
<b><%= link_to "##{estimate.doc_number}", estimate_path(estimate), target: :_blank %></b> <%= estimate.txn_date %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<% else %>
|
|
<p><%=t(:label_no_estimates)%>.</p>
|
|
<% end %>
|