mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2025-04-19 15:29:18 +00:00
15 lines
411 B
HTML
15 lines
411 B
HTML
<div class="priceList">
|
|
<table>
|
|
<tr>
|
|
<th>Vendor</th>
|
|
<th>Current price</th>
|
|
<th>Visit</th>
|
|
</tr>
|
|
<tr *ngFor="let price of prices">
|
|
<td>{{vendorMap[price.vendor_id]?.name}}</td>
|
|
<td>{{price.price_in_cents / 100}}€</td>
|
|
<td><a href="https://www.amazon.com">Visit Shop</a></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|