Re: Django Admin templates not being overwritten by app templates

2019-11-10 Thread Aldian Fazrihady
You need to reorder the app list in INSTALLED_APP setting, so `django.contrib.admin` is located lower than your app`. On Mon, Nov 11, 2019 at 3:49 AM Alexander Beach wrote: > I am trying to create registration forms using Django's built in auth > forms. However, when using the Django admin, the

Re: Django Admin templates not being overwritten by app templates

2019-11-10 Thread Alexander Beach
This behavior seems counter intuitive, and contrary to what the documentation says For example: my settings.py file is as follows: TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [], 'APP_DIRS': True, 'OPTIONS': {

Re: Django Admin templates not being overwritten by app templates

2019-11-10 Thread Mike Dewhirst
On 11/11/2019 7:02 am, Alexander Beach wrote: I am trying to create registration forms using Django's built in auth forms.  However, when using the Django admin, the Django admin templates are always being used. My application structure is as follows: | ├──bug │├──__init__.py │├──__pycache__

Django Admin templates not being overwritten by app templates

2019-11-10 Thread Alexander Beach
I am trying to create registration forms using Django's built in auth forms. However, when using the Django admin, the Django admin templates are always being used. My application structure is as follows: ├── bug │ ├── __init__.py │ ├── __pycache__ │ ├── settings.py │ ├── urls.py │ └