Sha256: 3337efa9f092e185665895c0e530178a0d6bcb845b1dd8ea6c3ea659be1a70b5

Contents?: true

Size: 810 Bytes

Versions: 13

Compression:

Stored size: 810 Bytes

Contents

<table id="products-table" class="table table-condensed table-striped mobile-data">
  <thead>
  <tr>
    <th>Product name</th>
    <th>Tax code</th>
    <th></th>
  </tr>
  </thead>
  <tbody>
  <% tax_codes.each do |tax_code| %>
      <tr>
        <td><%= tax_code[:productName] %></td>
        <td><%= tax_code[:taxCode] %></td>
        <td>
          <%= link_to '<i class="fa fa-times"></i>'.html_safe, remove_tax_code_configuration_path(:product_name => tax_code[:productName]), :method => :delete %>
        </td>
      </tr>
  <% end %>
  </tbody>
</table>

<%= javascript_tag do %>
  $(document).ready(function() {
    $('#products-table').dataTable({
      "dom": "t",
      "paging": false,
      "columns": [
        null,
        null,
        { "orderable": false }
      ]
    });
  });
<% end %>

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
killbill-avatax-3.0.4 app/views/avatax/configuration/_products_table.html.erb
killbill-avatax-3.0.3 app/views/avatax/configuration/_products_table.html.erb
killbill-avatax-3.0.2 app/views/avatax/configuration/_products_table.html.erb
killbill-avatax-2.2.1 app/views/avatax/configuration/_products_table.html.erb
killbill-avatax-3.0.1 app/views/avatax/configuration/_products_table.html.erb
killbill-avatax-2.1.0 app/views/avatax/configuration/_products_table.html.erb
killbill-avatax-2.0.0 app/views/avatax/configuration/_products_table.html.erb
killbill-avatax-1.0.0 app/views/avatax/configuration/_products_table.html.erb
killbill-avatax-0.2.0 app/views/avatax/configuration/_products_table.html.erb
killbill-avatax-0.1.0 app/views/avatax/configuration/_products_table.html.erb
killbill-avatax-0.0.3 app/views/avatax/configuration/_products_table.html.erb
killbill-avatax-0.0.2 app/views/avatax/configuration/_products_table.html.erb
killbill-avatax-0.0.1 app/views/avatax/configuration/_products_table.html.erb