web/penny/templates/reports.html
{% extends "navbar.html" %}
{% block content %}
<div class="container-fluid">
<h1 class="h3 mb-2 text-gray-800">Accounts</h1>
<div class="card shadow mb-4">
<div class="card-body">
<div class="table-responsive">
<table id="table" data-toggle="table" data-url="{{ data_url }}" data-cache='false' data-pagination="true" data-page-list="[25, 100, 250]" data-page-size="25" data-side-pagination="server" data-sort-order="desc">
<thead>
<tr>
<th data-field='report_url'>Report Name</th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>
{% endblock %}