From c44be3a8fd599f2a5182c1736d33ccfd67606a0a Mon Sep 17 00:00:00 2001 From: Gustavo Silva Date: Wed, 12 Apr 2023 06:39:08 +0100 Subject: [PATCH] feat: add template sample to test app (#10) As an example, because there is no theme configured here and this will have no impact in the app. **However**, another change to the project `README` is incoming after this change is merged to include a screenshot with an example of the template provided working with `django-surface-theme`. --- testapp/testapp/settings.py | 8 +------- testapp/testapp/templates/admin/base.html | 6 ++++++ 2 files changed, 7 insertions(+), 7 deletions(-) create mode 100644 testapp/testapp/templates/admin/base.html diff --git a/testapp/testapp/settings.py b/testapp/testapp/settings.py index d0eae0b..9dbb4ff 100644 --- a/testapp/testapp/settings.py +++ b/testapp/testapp/settings.py @@ -15,7 +15,6 @@ # Build paths inside the project like this: BASE_DIR / 'subdir'. BASE_DIR = Path(__file__).resolve().parent.parent - # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/ @@ -27,7 +26,6 @@ ALLOWED_HOSTS = [] - # Application definition INSTALLED_APPS = [ @@ -56,7 +54,7 @@ TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', - 'DIRS': [], + 'DIRS': [BASE_DIR / 'testapp' / 'templates'], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ @@ -71,7 +69,6 @@ WSGI_APPLICATION = 'testapp.wsgi.application' - # Database # https://docs.djangoproject.com/en/3.2/ref/settings/#databases @@ -82,7 +79,6 @@ } } - # Password validation # https://docs.djangoproject.com/en/3.2/ref/settings/#auth-password-validators @@ -101,7 +97,6 @@ }, ] - # Internationalization # https://docs.djangoproject.com/en/3.2/topics/i18n/ @@ -115,7 +110,6 @@ USE_TZ = True - # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/3.2/howto/static-files/ diff --git a/testapp/testapp/templates/admin/base.html b/testapp/testapp/templates/admin/base.html new file mode 100644 index 0000000..aef36ae --- /dev/null +++ b/testapp/testapp/templates/admin/base.html @@ -0,0 +1,6 @@ +{% extends "admin/base.html" %} + +{% block userlinks %} +{{ block.super }} + / API Tokens +{% endblock %}