Martin Mahner
Martin Mahner
The usage of a context processor to load variables into the login.html template is not the right place and has major disadvantages. https://github.com/AngellusMortis/django_microsoft_auth/blob/master/microsoft_auth/context_processors.py#L51-L58 The context processor is evaluated *on every*...
Currently we have a "save and goto next step" function, and a "goto step" function. If I go back to a previous step and change data and go directly to...
This is used in _every_ project I know. ``` TEMPLATE_CONTEXT_PROCESSORS += ( 'django.core.context_processors.request', ) ```
Consider testing with nested inlines too.
djangocms-googlemap==2.2.0 django-cms==3.11.5 You can set the default view of the map, in this case the center point of the USA with zoom level 5. ...
Kip displays a good error description, but there is no need to also write out the whole python traceback. As a user it wouldnt help me, just more confusing. Just...
media_tree models and migrations need to use `settings.AUTH_USER_MODEL`, otherwise upon migration you'll get: ``` CommandError: System check identified some issues: ERRORS: media_tree.FileNode.created_by: (fields.E301) Field defines a relation with the model...
When you update an existing snippet, the admin will throw an error message "A Snippet with this name already exists." Looks like the issue is the clean method, it literally...