Skip to content

Commit

Permalink
Adding filter box into Taxpayer list (#370)
Browse files Browse the repository at this point in the history
  • Loading branch information
sarias-eb authored Jun 16, 2020
1 parent 7ba1d50 commit 5e63b02
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion templates/supplier_app/ap-taxpayers.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ <h1>
</h1>
</div>
{% include 'supplier_app/AP/taxpayer_filter.html' %}
<div class="row p-3">
<label for="search">{% trans "Search: " %}</label>
<div class="col-sm-3">
<input id="searchInput" class="form-control mx-3">
</div>
</div>
<div class="row justify-content-center">
<table class="table table-hover table-striped table-sm">
<thead class="thead-eb-dark text-center">
Expand All @@ -25,7 +31,7 @@ <h1>
<th scope="col">{% trans "Action" %}</th>
</tr>
</thead>
<tbody class="text-center">
<tbody class="text-center" id="tableToFilter">
{% for taxpayer in taxpayer_list %}
<tr>
<td>{{taxpayer.business_name}}</td>
Expand Down

0 comments on commit 5e63b02

Please sign in to comment.