Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 30 additions & 21 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -101,27 +101,36 @@ <h4 class="welcome-message" style="margin-left:0">Welcome to your Expense Tracke
<h4 class="text-muted text-uppercase small">All Transactions</h4>
</div>
<div class="container">
<div class="row thead-dark">
<div class="col-md-2 offset-md-3">Category</div>
<div class="col-md-3 offset-md-1 transaction-header">Date</div>
<div class="col-md-3 transaction-header">Amount</div>
</div>
</div>
<div class="container movements container-movements card-body pt-0">
<div class="card-widget-body h-100">
<div class="row my-1">
<div class="col movements-type movements-type-deposit">2 deposit</div>
<div class="col movements-date">3 days ago</div>
<div class="col movements-category">Food</div>
<div class="col movements-value">R4 000</div>
</div>
<div class="row my-1">
<div class="col movements-type movements-type--withdrawal">1 withdrawal</div>
<div class="col movements-date">24/01/2037</div>
<div class="col movements-category">Petrol</div>
<div class="col movements-value col-auto col-ms-auto">R -R378</div>
</div>
</div>
<table class="table table-striped">
<thead class="thead-dark">
<tr>
<th scope="col">Type</th>
<th scope="col">Category</th>
<th scope="col">Date</th>
<th scope="col">Amount</th>
</tr>
</thead>
<tbody class="tbody container movements container-movements card-body pt-0">
<!-- <tr class="table-row-height">
<th scope="row">1</th>
<td class="col movements-type movements-type-deposit">Income</td>
<td class="col movements-date">2 Jan</td>
<td class="col movements-category">Income</td>
<td class="col movements-value">R 500</td>
</tr>
<tr class="table-row-height">
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr class="table-row-height">
<th scope="row">3</th>
<td colspan="2">Larry the Bird</td>
<td>@twitter</td>
</tr> -->
</tbody>
</table>
</div>
</div>

Expand Down
Loading