mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
16 lines
245 B
HTML
16 lines
245 B
HTML
{% extends 'base.html' %}
|
|
|
|
|
|
{% block main %}
|
|
|
|
<h1>Asset {{ form_header|default:'Create' }}</h1>
|
|
|
|
<form method="post">
|
|
{{ form }}
|
|
{% csrf_token %}
|
|
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
|
|
{% endblock %}
|