Use collapsibles

This commit is contained in:
ekzyis 2023-09-09 22:52:51 +02:00
parent 76309c4153
commit c948d7babf

View File

@ -40,77 +40,81 @@
</strong> </strong>
</code> </code>
<div class="font-mono mb-1">{{.Description}}</div> <div class="font-mono mb-1">{{.Description}}</div>
<div class="font-mono mb-1"><strong>Order Book</strong></div> <details open class="align-left">
<table class="mb-1"> <summary><span class="font-mono mb-1"><strong>Order Book</strong></span></summary>
<tr> <table class="w-100p mb-1">
<th class="align-left">BUY YES</th> <tr>
<th class="align-center">SELL</th> <th class="align-left">BUY YES</th>
<th class="align-right">BUY NO</th> <th class="align-center">SELL</th>
</tr> <th class="align-right">BUY NO</th>
{{ range .Orders }} </tr>
<tr> {{ range .Orders }}
{{ if and (eq .ShareId $.YesShare.Id) (eq .Side "BUY") }} <tr>
<td> {{ if and (eq .ShareId $.YesShare.Id) (eq .Side "BUY") }}
<div class="flex yes"> <td>
<span class="align-left">YES</span> <div class="flex yes">
<span style="width: 100%" class="align-right">{{.Quantity}} @ {{.Price}}</span> <span class="align-left">YES</span>
</div> <span style="width: 100%" class="align-right">{{.Quantity}} @ {{.Price}}</span>
</td> </div>
{{ else }} </td>
<td></td> {{ else }}
<td></td>
{{ end }}
{{ if and (eq .ShareId $.YesShare.Id) (eq .Side "SELL") }}
<td>
<div class="flex no" style="width: 100%">
<span class="align-left">YES</span>
<span style="width: 100%" class="align-right">{{.Quantity}} @ {{.Price}}</span>
</div>
</td>
{{ else }}
<td></td>
{{ end }}
{{ if and (eq .ShareId $.NoShare.Id) (eq .Side "SELL") }}
<td>
<div class="flex no">
<span class="align-left">NO</span>
<span style="width: 100%" class="align-right">{{.Quantity}} @ {{.Price}}</span>
</div>
</td>
{{ else }}
<td></td>
{{ end }}
{{ if and (eq .ShareId $.YesShare.Id) (eq .Side "BUY") }}
<td>
<div class="flex yes">
<span class="align-left">YES</span>
<span style="width: 100%" class="align-right">{{.Quantity}} @ {{.Price}}</span>
</div>
</td>
{{ else }}
<td></td>
{{ end }}
</tr>
{{ end }} {{ end }}
{{ if and (eq .ShareId $.YesShare.Id) (eq .Side "SELL") }} </table>
<td> </details>
<div class="flex no" style="width: 100%">
<span class="align-left">YES</span>
<span style="width: 100%" class="align-right">{{.Quantity}} @ {{.Price}}</span>
</div>
</td>
{{ else }}
<td></td>
{{ end }}
{{ if and (eq .ShareId $.NoShare.Id) (eq .Side "SELL") }}
<td>
<div class="flex no">
<span class="align-left">NO</span>
<span style="width: 100%" class="align-right">{{.Quantity}} @ {{.Price}}</span>
</div>
</td>
{{ else }}
<td></td>
{{ end }}
{{ if and (eq .ShareId $.NoShare.Id) (eq .Side "BUY") }}
<td>
<div class="flex yes">
<span class="align-left">NO</span>
<span style="width: 100%" class="align-right">{{.Quantity}} @ {{.Price}}</span>
</div>
</td>
{{ else }}
<td></td>
{{ end }}
</tr>
{{ end }}
</table>
<hr /> <hr />
<div class="font-mono mb-1"><strong>Order Form</strong></div> <details open class="align-left">
<form id="form" class="order-form" hidden action="/api/market/{{$.Id}}/order" method="post"> <summary><span class="font-mono mb-1"><strong>Order Form</strong></span></summary>
<button id="buy" type="button" class="order-button yes w-100p selected">BUY</button> <form id="form" class="order-form" hidden action="/api/market/{{$.Id}}/order" method="post">
<button id="sell" type="button" class="order-button no w-100p">SELL</button> <button id="buy" type="button" class="order-button yes w-100p selected">BUY</button>
<input id="market-id" hidden name="market_id" value="{{$.Id}}" /> <button id="sell" type="button" class="order-button no w-100p">SELL</button>
<input id="side" hidden name="side" value="BUY" /> <input id="market-id" hidden name="market_id" value="{{$.Id}}" />
<label>share</label> <input id="side" hidden name="side" value="BUY" />
<select name="share_id"> <label>share</label>
<option value="{{.YesShare.Id}}">YES</option> <select name="share_id">
<option value="{{.NoShare.Id}}">NO</option> <option value="{{.YesShare.Id}}">YES</option>
</select> <option value="{{.NoShare.Id}}">NO</option>
<label>quantity</label> </select>
<input id="quantity" type="number" name="quantity" placeholder="quantity" /> <label>quantity</label>
<label>price [sats]</label> <input id="quantity" type="number" name="quantity" placeholder="quantity" />
<input id="price" type="number" name="price" placeholder="price"/> <label>price [sats]</label>
<label id="submit-label"></label> <input id="price" type="number" name="price" placeholder="price" />
<button type="submit">SUBMIT</button> <label id="submit-label"></label>
</form> <button type="submit">SUBMIT</button>
</form>
</details>
</div> </div>
</body> </body>
<script src="/order.js"></script> <script src="/order.js"></script>