Add link text for 'clear' button on table column

This commit is contained in:
Jeremy Stretch 2024-07-31 20:15:08 -04:00
parent bc0271f67e
commit 9aed5c5a04

View File

@ -1,4 +1,5 @@
{% load django_tables2 %} {% load django_tables2 %}
{% load i18n %}
<table{% if table.attrs %} {{ table.attrs.as_html }}{% endif %} hx-disinherit="hx-target hx-select" hx-swap="outerHTML"> <table{% if table.attrs %} {{ table.attrs.as_html }}{% endif %} hx-disinherit="hx-target hx-select" hx-swap="outerHTML">
{% if table.show_header %} {% if table.show_header %}
<thead <thead
@ -14,6 +15,7 @@
<a href="#" <a href="#"
hx-get="{{ table.htmx_url }}{% querystring table.prefixed_order_by_field='' %}" hx-get="{{ table.htmx_url }}{% querystring table.prefixed_order_by_field='' %}"
class="text-danger" class="text-danger"
title="{% trans "Clear ordering" %}"
><i class="mdi mdi-close"></i></a> ><i class="mdi mdi-close"></i></a>
</div> </div>
{% endif %} {% endif %}