Sha256: 92bc270727f78b6c959ed81078025f31c18d7c2631e868ff0244986e43a484b8

Contents?: true

Size: 793 Bytes

Versions: 1

Compression:

Stored size: 793 Bytes

Contents

<h3 class="pageHeader">Accounts: <%= link_to 'Create new account', new_account_path %></h3>

<table id="accounts-table" class="table table-condensed">
  <thead>
  <tr>
    <th>Account ID</th>
    <th>Name</th>
    <th>External key</th>
    <th>Currency</th>
    <th>City</th>
    <th>Country</th>
  </tr>
  </thead>
  <tbody>
  <tr>
    <td colspan="1" class="dataTables_empty">Loading data from server</td>
  </tr>
  </tbody>
</table>

<%= javascript_tag do %>
$(document).ready(function() {
  $('#accounts-table').dataTable({
    "sDom": "<'row'<'col-md-6'l><'col-md-6'f>r>t<'row'<'col-md-6'i><'col-md-6'p>>",
    "sPaginationType": "simple_numbers",
    "bProcessing": true,
    "bServerSide": true,
    "sAjaxSource": "<%= accounts_pagination_path :format => :json %>"
  });
});
<% end %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
kaui-0.11.0 app/views/kaui/accounts/index.html.erb