Tag: django-tables2
-
How to check if django-tables2 table is empty or not in templates code?
In Django-Tables2, you can check if a table is empty or not by checking the length of the table’s queryset. If the length is zero, then the table is empty. You can do this in your template code using the if statement and the table.queryset attribute. Here’s an example of how to do this in…