haikal/templates/dealers/assign_car_makes.html
Marwan Alwali 294ccd58a9 update
2025-03-18 00:24:14 +03:00

25 lines
576 B
HTML

{% extends "base.html" %}
{% load crispy_forms_filters %}
{% block content %}
<style>
.car-makes-grid {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 16px;
}
.car-makes-grid label {
display: flex;
align-items: center;
}
</style>
<h2>{{ _("Select Car Makes You Sell")}}</h2>
<form method="post">
{% csrf_token %}
<div class="car-makes-grid">
{{ form.car_makes }}
</div>
<button class="btn btn-phoenix-success btn-sm" type="submit">{{ _("Save") }}</button>
</form>
{% endblock %}