├── .gitignore ├── Pipfile ├── Pipfile.lock ├── README.md ├── django-htmx-modal-form-10-fps.gif ├── django_htmx_modal_form ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py └── movie_collection ├── __init__.py ├── apps.py ├── forms.py ├── migrations ├── 0001_initial.py └── __init__.py ├── models.py ├── static ├── dialog.js └── toast.js ├── templates ├── index.html ├── movie_form.html └── movie_list.html └── views.py /.gitignore: -------------------------------------------------------------------------------- 1 | /.venv/ 2 | db.sqlite3 3 | -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/django-htmx-modal-form/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/django-htmx-modal-form/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/django-htmx-modal-form/HEAD/README.md -------------------------------------------------------------------------------- /django-htmx-modal-form-10-fps.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/django-htmx-modal-form/HEAD/django-htmx-modal-form-10-fps.gif -------------------------------------------------------------------------------- /django_htmx_modal_form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_htmx_modal_form/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/django-htmx-modal-form/HEAD/django_htmx_modal_form/asgi.py -------------------------------------------------------------------------------- /django_htmx_modal_form/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/django-htmx-modal-form/HEAD/django_htmx_modal_form/settings.py -------------------------------------------------------------------------------- /django_htmx_modal_form/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/django-htmx-modal-form/HEAD/django_htmx_modal_form/urls.py -------------------------------------------------------------------------------- /django_htmx_modal_form/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/django-htmx-modal-form/HEAD/django_htmx_modal_form/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/django-htmx-modal-form/HEAD/manage.py -------------------------------------------------------------------------------- /movie_collection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /movie_collection/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/django-htmx-modal-form/HEAD/movie_collection/apps.py -------------------------------------------------------------------------------- /movie_collection/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/django-htmx-modal-form/HEAD/movie_collection/forms.py -------------------------------------------------------------------------------- /movie_collection/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/django-htmx-modal-form/HEAD/movie_collection/migrations/0001_initial.py -------------------------------------------------------------------------------- /movie_collection/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /movie_collection/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/django-htmx-modal-form/HEAD/movie_collection/models.py -------------------------------------------------------------------------------- /movie_collection/static/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/django-htmx-modal-form/HEAD/movie_collection/static/dialog.js -------------------------------------------------------------------------------- /movie_collection/static/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/django-htmx-modal-form/HEAD/movie_collection/static/toast.js -------------------------------------------------------------------------------- /movie_collection/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/django-htmx-modal-form/HEAD/movie_collection/templates/index.html -------------------------------------------------------------------------------- /movie_collection/templates/movie_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/django-htmx-modal-form/HEAD/movie_collection/templates/movie_form.html -------------------------------------------------------------------------------- /movie_collection/templates/movie_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/django-htmx-modal-form/HEAD/movie_collection/templates/movie_list.html -------------------------------------------------------------------------------- /movie_collection/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/django-htmx-modal-form/HEAD/movie_collection/views.py --------------------------------------------------------------------------------