57 lines
2.6 KiB
HTML
57 lines
2.6 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<pre>{{ entry }}</pre>
|
|
|
|
<fieldset>
|
|
<legend>Neuer Inventareintrag</legend>
|
|
|
|
<form method="POST" action="/entry/edit-item-data">
|
|
<div class="form-input">
|
|
<label for="item_bought">Kaufdatum</label>
|
|
<input name="item_bought" id="item_bought" type="date" value="{{ (entry.item_bought or now()).strftime('%Y-%m-%d') }}">
|
|
</div>
|
|
<div class="form-input">
|
|
<label for="item_barcode">Barcode</label>
|
|
<input name="item_barcode" id="item_barcode" type="text" value="{{ entry.item_barcode }}" placeholder="Barcode">
|
|
</div>
|
|
<div class="form-input">
|
|
<label for="item_name">Artikel</label>
|
|
<input name="item_name" id="item_name" type="text" value="{{ entry.item_name }}" placeholder="Artikel">
|
|
</div>
|
|
<div class="form-input">
|
|
<label for="item_group">Gruppe</label>
|
|
<select name="item_group" id="item_group">
|
|
{% for group in groups %}
|
|
<option value="{{ group.group_id }}"{% if entry.item_group_id == group.group_id %} selected{% endif %}>{{ group.group_name }} ({{ group.group_id }})</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
<div class="form-input">
|
|
<label for="item_net_unit_price">Stückpreis (Netto) in €</label>
|
|
<input name="item_net_unit_price" id="item_net_unit_price" type="number" step="0.01" value="{{ entry.item_net_unit_price }}" placeholder="Stückpreis (Netto) in €">
|
|
</div>
|
|
<div class="form-input">
|
|
<input name="item_tax_group" id="item_tax_group_1" type="radio" value="1"{% if entry.item_tax_group_id == 1 %} selected{% endif %}>
|
|
<label for="item_tax_group_1">Volle Umsatzsteuer (19%)</label>
|
|
|
|
<input name="item_tax_group" id="item_tax_group_2" type="radio" value="2"{% if entry.item_tax_group_id == 2 %} selected{% endif %}>
|
|
<label for="item_tax_group_2">Ermäßigte Umsatzsteuer (7%)</label>
|
|
</div>
|
|
<div class="form-input">
|
|
<label for="item_amount">Anzahl</label>
|
|
<input name="item_amount" id="item_amount" type="number" value="{{ entry.item_amount }}" placeholder="Anzahl">
|
|
</div>
|
|
<div class="form-input">
|
|
<label for="item_group">Raum</label>
|
|
<select name="item_location" id="item_location">
|
|
{% for location in locations %}
|
|
<option value="{{ location.location_id }}"{% if entry.item_location_id == location.location_id or ("item_location" not in entry and (session.location.location_id == location.location_id)) %} selected{% endif %}>{{ location.location_name }} ({{ location.location_id }})</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
<button>Weiter zu den Snackeinträgen</button>
|
|
</form>
|
|
</fieldset>
|
|
{% endblock %}
|