mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
21 lines
443 B
HTML
21 lines
443 B
HTML
{% extends 'base_assets.html' %}
|
|
{% block title %}Edit{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="page-header">
|
|
<h1>Supplier
|
|
{% if object %}
|
|
Edit: {{ object.name }}
|
|
{% else %}
|
|
Create
|
|
{% endif %}</h1>
|
|
</div>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form }}
|
|
|
|
<input type="submit" value="Save" class="btn btn-success">
|
|
</form>
|
|
{% endblock %}
|