haikal/templates/vendors/edit_vendor.html
2024-12-08 14:07:50 +03:00

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 %}