61 lines
727 B
HTML
61 lines
727 B
HTML
{% 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 %}
|