Sha256: facd342a741f3d2ed0abd365d8544350695b2cc95d15f97bdefce347e609aaeb

Contents?: true

Size: 837 Bytes

Versions: 12

Compression:

Stored size: 837 Bytes

Contents

<table id="exemptions-table" class="table table-condensed table-striped mobile-data">
  <thead>
  <tr>
    <th>Account ID</th>
    <th>Customer Usage Type</th>
    <th></th>
  </tr>
  </thead>
  <tbody>
  <% exemptions.each do |exemption| %>
      <tr>
        <td><%= exemption[:account_id] %></td>
        <td><%= exemption[:customer_usage_type] %></td>
        <td>
          <%= link_to '<i class="fa fa-times"></i>'.html_safe, remove_exemption_configuration_path(:account_id => exemption[:account_id]), :method => :delete %>
        </td>
      </tr>
  <% end %>
  </tbody>
</table>

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

Version data entries

12 entries across 12 versions & 1 rubygems

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