Giannis Terzopoulos
Giannis Terzopoulos
[ticket-35044](https://code.djangoproject.com/ticket/35044) Thanks @adamchainz for the report, @charettes for the ideas.
Hello, we are getting the following error when adding a proxy model that extends more than 1 superclass. ``` if model_name is None: > app_label, model_name = app_label.split('.') AttributeError: type...
I am trying to make use of PermissionRequiredMixin in an async context. My end goal is to be able to simply do: ```python from asgiref.sync import sync_to_async class MyView(PermissionRequiredMixin, View):...
The end goal is to be able to do: ```python from asgiref.sync import sync_to_async class MyView(PermissionRequiredMixin, View): permission_required = 'some_perm' raise_exception = True async def get_permission_object(self): return await MyModel.objects.aget(slug='awesome-slug') async...
[ticket-45](https://github.com/mixxorz/slippers/issues/45)
Ticket: https://code.djangoproject.com/ticket/35529 Forum discussion: https://forum.djangoproject.com/t/adding-a-template-tag-to-generate-query-strings/24521/ I would rather use dictionary merging `{**d1, **d2}` but this was not enough for `QueryDict`s that may contain list values.