structure for adding items

This commit is contained in:
2022-10-06 01:34:31 +02:00
parent c6dc363c68
commit 8092e8b6bb
3 changed files with 96 additions and 15 deletions

View File

@@ -0,0 +1,60 @@
{% extends "base.html" %}
{% block content %}
<h1>Neuer Inventareintrag</h1>
<h2>{{oe.name}}</h2>
<form method=post>
<label>
Beschreibung
<textarea name=description></textarea>
</label>
<br>
<label>
IA-Nummer
<input type=text name=innenauftrag>
<label>
<br>
<label>
Seriennummer
<input type=text name=serial>
<label>
<br>
<label>
Ort
<input type=text name=location>
<label>
<br>
<label>
Legacy-Inventarnummer
<input type=text name=old_inventory_id>
<label>
<br>
<label>
Kaufdatum
<input type=date name=purchase_date>
<label>
<br>
<label>
Kaufpreis
<input type=number step=0.01 name=purchase_price>
<label>
<br>
<input type=submit>
</form>
{% endblock %}