15 lines
416 B
HTML
15 lines
416 B
HTML
{% extends 'base.html' %}
|
|
{% load crispy_forms_filters %}
|
|
{% load i18n %}
|
|
{% block title %}{% trans "Edit Supplier" %}{% endblock title %}
|
|
{% block content %}
|
|
<div class="container">
|
|
<h1>{% trans "Edit Supplier" %}</h1>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<button class="btn btn-primary" type="submit">{% trans "Save" %}</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|