{% extends "base.html" %} {% block title %}Asset Edit {% endblock %} {% block content %}

Asset Edit (Back to Assets)

{% csrf_token %}
{{ form.a_make.label }} {{ form.a_make }}
{{ form.a_model.label }} {{ form.a_model }}
{{ form.a_description.label }} {{ form.a_description }}
{{ form.a_serial.label }} {{ form.a_serial }}
{{ form.a_assetid.label }} {{ form.a_assetid }}
{{ form.a_location.label }} {{ form.a_location }}
{{ form.errors }}

{% include "assets/asset_component_list.html" %}

{% include "assets/asset_software_list.html" %} {% endblock %}