17 lines
534 B
HTML
17 lines
534 B
HTML
{% extends 'base.html' %}
|
|
{% load i18n %}
|
|
{% load crispy_forms_filters %}
|
|
{% block title %}{% trans "Car Transfer" %}{% endblock %}
|
|
{% block content %}
|
|
<div class="row mt-3">
|
|
|
|
<h3 class="mb-3">{% trans "Sell car to another dealer" %}</h3>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<div class="form-group">
|
|
<button type="submit" class="btn btn-phoenix-primary">{% trans "Sell" %}</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{% endblock %} |