Re: contrib.auth.Group comment

2020-07-17 Thread Tom Forbes
I think this makes sense - I would create a ticket in Trac. On Wednesday, 17 June 2020 at 10:55:44 UTC+1 mike.d...@gmail.com wrote: > Auth Groups are fabulous for designing access control into a project. > However, success in such design relies heavily on either user memory or > documentation.

Re: Custom collation support

2020-07-17 Thread Tom Carrick
I've had a deeper look at this now and think I have an API proposal. First, the state of supported vendors: 1. All vendors support adding a collation to text/varchar fields. 2. The syntax is more or less the same. 3. However, the collation names themselves are different. 4. PostgreSQL is the only

Re: HttpResponse headers interface

2020-07-17 Thread Tom Carrick
Ah, I think I just misread your earlier mail then. Sorry about the confusion! Tom On Thu, 16 Jul 2020 at 20:44, Carlton Gibson wrote: > Hey Tom, > > The movement of the discussion was (or at least seemed to be, prompting > concern) to eventually deprecate and remove, even if on a longer time >

Re: Admin webcomponents

2020-07-17 Thread '1337 Shadow Hacker' via Django developers (Contributions to Django itself)
Another advantage that I figured while finishing the DAL 4.0 PoC offering the AutocompleteLight WebComponent support in addition to Select2: - easy to template with Example: def render(self, name, value, attrs=None, renderer=None): choice = self.field.queryset.filter(pk=value).first() deck = s