Thumose3
Thumose3
Hi all, When i add a column in the view with get_table_kwargs() _views.py_ ``` class InventoryListView( LoginRequiredMixin, GroupRequiredMixin, SingleTableMixin ): template_name = "stock_inventory.html" model = Product table_class = ProductsTable queryset...
If the character § is in a text, when i try to get the start_index and end_index the indexes are wrong by 1. It is as if the character §...
Currently context variables are not passed down to the componenets, which is really a pain when using components extensively. I have to repeat the context variables multiple times like this:...
I'm using django-template-partials (https://github.com/carltongibson/django-template-partials) Its a nice library to create small components to be reused in templates. This library has 2 template tags and it formats them wrong: ``` {%...
Date ranges should not be made timezone aware https://github.com/carltongibson/django-filter/issues/1659
Dates in Django do not have timezones, as they are just dates, only DateTime has this, which makes sence. Here we make DateRangeField timezone aware: https://github.com/carltongibson/django-filter/blob/920a79ff401eb87946a2a6593bee767a7cfb2fa0/django_filters/fields.py#L42 Why is that? It's...
I just tried to get my site verified by google, and i had to place a meta tag in the but it failed due to the being removed. after not...