Compare commits

..

No commits in common. "ab239d388355dcd48c2ea6af4b5c9371cd771484" and "4998888172bc3c3ef4019fa6c62dc5d39cda40f8" have entirely different histories.

7 changed files with 3 additions and 4 deletions

View File

@ -4366,7 +4366,6 @@ class AccountListView(LoginRequiredMixin, PermissionRequiredMixin, ListView):
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)
context["url_kwargs"] = self.kwargs
context["coa_pk"] = self.kwargs["coa_pk"]
return context

View File

@ -46,7 +46,7 @@
</section>
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">{% trans "Our Refund Policy" %}</h5>

View File

@ -9,7 +9,7 @@
</div>
<div class="flex-grow-1">
<h5 class="fw-bold mb-0">
{{ coa_model.name }}
{% if coa_model.is_default %}
<span class="badge bg-light text-primary ms-2 d-none d-sm-inline">{% trans 'DEFAULT' %}</span>
{% endif %}

View File

@ -200,7 +200,7 @@
</div>
</div>
{% else %}
{% url 'account_create' request.dealer.slug coa_pk as create_account_url %}
{% url "account_create" request.dealer.slug as create_account_url %}
{% include "empty-illustration-page.html" with value="account" url=create_account_url %}
{% endif %}
{% endblock %}