16 lines
544 B
HTML
16 lines
544 B
HTML
{% extends 'base.html' %}
|
|
{% load i18n %}
|
|
{% block content %}
|
|
<div class="row mb-3">
|
|
<div class="col-sm-6">
|
|
<h3>{{ _("Billing data") }}</h3>
|
|
<form method="post" action="{% url 'billing_info_delete' %}">
|
|
{% csrf_token %}
|
|
{% trans "Are you sure to delete billing info?" %}
|
|
<p>
|
|
<button type="submit" class="btn btn-sm btn-phoenix-danger">{{ _("Confirm") }}</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|