23 lines
854 B
HTML
23 lines
854 B
HTML
{% extends 'base.html' %}
|
|
{% load i18n crispy_forms_filters %}
|
|
|
|
|
|
{% block content %}
|
|
<div class="row mb-3">
|
|
<div class="col-sm-6">
|
|
<form action="{% url 'billing_info' %}{% if request.GET.next %}?next={{ request.GET.next }}{% endif %}" method="post" class="form">
|
|
|
|
<legend>{% trans "Provide billing data"|upper %}</legend>
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
{% if object %}
|
|
<a class="btn btn-sm btn-phoenix-danger" href="{% url 'billing_info_delete' %}"><!--<span class="far fa-trash-alt"></span>--> {{ _("Delete") }}</a>
|
|
{% endif %}
|
|
<button type="submit" class="btn btn-sm btn-phoenix-primary">
|
|
{{ _("Save") }}
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|