From 82f72969e2508596d0eddfcd4ad362dff472af62 Mon Sep 17 00:00:00 2001 From: Gustavo Silva Date: Mon, 10 Apr 2023 22:03:42 +0100 Subject: [PATCH] feat: add template sample to test app 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/includes/navigation.html | 5 +++++ 2 files changed, 6 insertions(+), 7 deletions(-) create mode 100644 testapp/testapp/templates/includes/navigation.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/includes/navigation.html b/testapp/testapp/templates/includes/navigation.html new file mode 100644 index 0000000..e02732b --- /dev/null +++ b/testapp/testapp/templates/includes/navigation.html @@ -0,0 +1,5 @@ +{% block menu_options %} + +Profile +API Tokens +{% endblock %}