Preparing files for transfer to PyRIGS

This commit is contained in:
Matthew Smith
2019-10-01 13:22:16 +01:00
parent 5aafa36d2a
commit 1e1f3037f8
91 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{% extends 'base.html' %}
{% block title %}Edit{% endblock %}
{% block main %}
<h4>
Supplier
{% if object %}
Edit | {{ object.name }}
{% else %}
Create
{% endif %}
</h4>
<div class="divider"></div>
<form method="post">
{% csrf_token %}
{{ form }}
<input type="submit" value="Save" class="btn">
</form>
{% endblock %}