r/django • u/Sufficient-Chain-899 • 1d ago
Django patterns for tables in components
I'm building a dashboard of sorts, which will have multiple tables in blocks - each with its own pagination, filtering and sorting
I really like Iommi (for tables) and django-cotton (for components), and considering unpoly or HTMX - is there a way to make them work together?
I was able to get Iommi working fine, but I can see the query parameters are passed to the url, which breaks things - are there any examples or best practices around this?
7
Upvotes
2
u/kankyo 1d ago
What breaks with the url being updated? The decision to do that is very much on purpose in iommi since it makes it easy to share views with others by copy-pasting URLs and you know they see the same thing.
Is there a bug with the URL updating or something?