From f04ad2e65938432de606a26e0aeb310d466d5bc5 Mon Sep 17 00:00:00 2001 From: tsb Date: Sat, 24 Jun 2023 16:15:23 -0400 Subject: [PATCH] fixed typo in htmx package --- {{cookiecutter.project_slug}}/config/settings/base.py | 2 +- {{cookiecutter.project_slug}}/requirements/base.txt | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/{{cookiecutter.project_slug}}/config/settings/base.py b/{{cookiecutter.project_slug}}/config/settings/base.py index 815485072..bc5496795 100644 --- a/{{cookiecutter.project_slug}}/config/settings/base.py +++ b/{{cookiecutter.project_slug}}/config/settings/base.py @@ -82,7 +82,7 @@ THIRD_PARTY_APPS = [ "allauth", "allauth.account", "allauth.socialaccount", - "django-htmx", + "django_htmx", {%- if cookiecutter.use_celery == 'y' %} "django_celery_beat", {%- endif %} diff --git a/{{cookiecutter.project_slug}}/requirements/base.txt b/{{cookiecutter.project_slug}}/requirements/base.txt index 5f50e2dfe..df609b37b 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -32,6 +32,8 @@ django==4.1.9 # pyup: < 4.2 # https://www.djangoproject.com/ django-environ==0.10.0 # https://github.com/joke2k/django-environ django-model-utils==4.3.1 # https://github.com/jazzband/django-model-utils django-allauth==0.54.0 # https://github.com/pennersr/django-allauth +django-htmx==1.15.0 # https://django-htmx.readthedocs.io/en/latest/installation.html +{%- if cookiecutter.use_celery == "y" %} {%- if cookiecutter.frontend_pipeline == 'Django Compressor' %} django-compressor==4.3.1 # https://github.com/django-compressor/django-compressor {%- endif %} @@ -46,4 +48,3 @@ drf-spectacular==0.26.2 # https://github.com/tfranzel/drf-spectacular {%- if cookiecutter.frontend_pipeline == 'Webpack' %} django-webpack-loader==2.0.1 # https://github.com/django-webpack/django-webpack-loader {%- endif %} -django-htmx==1.15.0 # https://django-htmx.readthedocs.io/en/latest/installation.html