47 lines
1.2 KiB
HTML
47 lines
1.2 KiB
HTML
|
{% if price %}
|
||
|
<div class="field is-narrow">
|
||
|
<label class="label" for="cardmarket-price">
|
||
|
CardMarket Price
|
||
|
</label>
|
||
|
<div class="control">
|
||
|
<input id="cardmarket-price" class="input" value="{{ price.cardmarket-price }}" type="text">
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="field is-narrow">
|
||
|
<label class="label" for="tcgplayer-price">
|
||
|
TCGPlayer Price
|
||
|
</label>
|
||
|
<div class="control">
|
||
|
<input id="tcgplayer-price" class="input" value="{{ price.tcgplayer-price }}" type="text">
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="field is-narrow">
|
||
|
<label class="label" for="ebay-price">
|
||
|
eBay Price
|
||
|
</label>
|
||
|
<div class="control">
|
||
|
<input id="ebay-price" class="input" value="{{ price.ebay-price }}" type="text">
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="field is-narrow">
|
||
|
<label class="label" for="amazon-price">
|
||
|
Amazon Price
|
||
|
</label>
|
||
|
<div class="control">
|
||
|
<input id="amazon-price" class="input" value="{{ price.amazon-price }}" type="text">
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="field is-narrow">
|
||
|
<label class="label" for="coolstuffinc-price">
|
||
|
CoolStuffInc Price
|
||
|
</label>
|
||
|
<div class="control">
|
||
|
<input id="coolstuffinc-price" class="input" value="{{ price.coolstuffinc-price }}" type="text">
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endif %}
|