blob: 233cdfcf0f6f9dbe3d5b74fa4db1d7c65fbfffc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{% extends "site.xml" %}
{% block content %}
{% load crispy_forms_tags %}
<form name="serial_number_form"
id="serial_number_form"
method="POST"
action=""
enctype="multipart/form-data">
{{ form|crispy }}
<input type="submit" class="btn btn-success" value="Upload vendor, BMC IP and serial number"/>
</form>
{% endblock %}
|