{% extends "layout.html" %} {% block title %}Add Asset{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %} {% include "authorization_header.html" %} {% if session.logged_in %}

ADD ASSET

Assets Currently In Database

{% if assets_list is not defined %}

There are currently no assets in the database.

{% endif %} {% if assets_list is defined %} {% for ast in assets_list %} {% endfor %}
Asset Tag Asset Description Asset Location
{{ ast[0] }} {{ ast[1] }} {{ ast[2] }}
{% endif %}

Please follow the guidelines outlined within each text field.

Asset Tag:
Asset Description:
Arrival Date:
Storage Facility:



RETURN TO DASHBOARD
{% endif %} {% endblock %}