Created
April 2, 2013 18:54
-
-
Save kshsieh/5295079 to your computer and use it in GitHub Desktop.
from for artwork credit show in summary and removal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% elsif adjustment.label == "Artwork Credit" %> | |
<tr class="artwork-credit"> | |
<td class="credit-name"><%= adjustment.label %>:</td> | |
<td class="align-right"><%= number_to_currency adjustment.amount %></td> | |
<td class="credit-form"> | |
<%= form_for @order, url: update_cart_path, html: {class: 'remove-credit-form', id: "credit_#{adjustment.object_id}"} do |f| %> | |
<%= f.hidden_field :artwork_credit, value: '0' %> | |
<button type="button" class="close remove-artwork-credit" title="Remove Artwork Credit" rel="tooltip">×</button> | |
<% end %> | |
</td> | |
</tr> | |
<% else %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment