correct indention
This commit is contained in:
parent
b6dd9d4892
commit
2eddc8a869
1 changed files with 17 additions and 17 deletions
|
|
@ -18,24 +18,24 @@
|
||||||
<button type="submit" class="btn btn-primary">Submit</button>
|
<button type="submit" class="btn btn-primary">Submit</button>
|
||||||
</form>
|
</form>
|
||||||
<div class="table-responsive">
|
<div class="table-responsive">
|
||||||
<table class="table table-bordered">
|
<table class="table table-bordered">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="col">ID</th>
|
<th scope="col">ID</th>
|
||||||
<th scope="col">Name</th>
|
<th scope="col">Name</th>
|
||||||
<th scope="col">Delete</th>
|
<th scope="col">Delete</th>
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
{% for bc in budget_categories %}
|
|
||||||
<tr id="{{bc[0].id}}-row">
|
|
||||||
<th scope="row">{{bc[0].id}}</th>
|
|
||||||
<th scope="row">{{bc[0].name}}</th>
|
|
||||||
<th scope="row"><button class="btn btn-danger del-button" id="{{bc[0].id}}">Delete</button></th>
|
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
</thead>
|
||||||
</tbody>
|
<tbody>
|
||||||
</table>
|
{% for bc in budget_categories %}
|
||||||
|
<tr id="{{bc[0].id}}-row">
|
||||||
|
<th scope="row">{{bc[0].id}}</th>
|
||||||
|
<th scope="row">{{bc[0].name}}</th>
|
||||||
|
<th scope="row"><button class="btn btn-danger del-button" id="{{bc[0].id}}">Delete</button></th>
|
||||||
|
</tr>
|
||||||
|
{% endfor %}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue