Skip to content
Open
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
37 changes: 34 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,17 @@
</div>
<div class="row py-3">
<div class="col-lg-12">
<h2>LP Holdings</h2>
<h2>
LP Holdings
<a
id="lp-holding-refresh-button"
class="btn btn-outline-light"
data-bs-toggle="tooltip"
data-bs-placement="top"
title="Auto Refresh">
<i class="bi bi-arrow-repeat"></i>
</a>
</h2>
<div class="table-responsive">
<table id="lp_holdings" class="table">
<thead>
Expand All @@ -120,7 +130,17 @@ <h2>LP Holdings</h2>
</div>
<div class="row py-3">
<div class="col-lg-6 col-md-12">
<h2>Mint Positions</h2>
<h2>
Mint Positions
<a
id="mint-position-refresh-button"
class="btn btn-outline-light"
data-bs-toggle="tooltip"
data-bs-placement="top"
title="Auto Refresh">
<i class="bi bi-arrow-repeat"></i>
</a>
</h2>
<div class="table-responsive">
<table id="mint_positions" class="table">
<col width="25%" />
Expand Down Expand Up @@ -154,7 +174,18 @@ <h2>Mint Positions</h2>
</div>
</div>
<div class="col-lg-6">
<h2>Stock Price</h2>
<h2>
Stock Price
<a
id="stock-price-refresh-button"
class="btn btn-outline-light"
data-bs-toggle="tooltip"
data-bs-placement="top"
title="Auto Refresh"
>
<i class="bi bi-arrow-repeat"></i>
</a>
</h2>
<div class="table-responsive">
<table id="stock_price" class="table">
<thead>
Expand Down
Loading