haikal/templates/inventory/car_location_form.html
Marwan Alwali c4f42d9958 update
2025-03-20 03:23:55 +03:00

17 lines
498 B
HTML

{% extends 'base.html' %}
{% load i18n %}
{% load crispy_forms_filters %}
{% block title %}{% trans "Manage Car Location" %}{% endblock %}
{% block content %}
<div class="row mt-3">
<h3 class="mb-3">{% trans "Manage Car Location" %}</h3>
<form method="post">
{% csrf_token %}
{{ form|crispy }}
<div class="form-group">
<button type="submit" class="btn btn-phoenix-success">{% trans "Save" %}</button>
</div>
</form>
</div>
{% endblock %}