├── .gitignore ├── LICENSE ├── README.md ├── books ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── djforms ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── requirements.txt └── templates ├── base.html ├── create_book.html ├── home.html └── partials ├── book_detail.html └── book_form.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justdjango/django_htmx_dynamic_forms/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justdjango/django_htmx_dynamic_forms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justdjango/django_htmx_dynamic_forms/HEAD/README.md -------------------------------------------------------------------------------- /books/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /books/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justdjango/django_htmx_dynamic_forms/HEAD/books/admin.py -------------------------------------------------------------------------------- /books/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justdjango/django_htmx_dynamic_forms/HEAD/books/apps.py -------------------------------------------------------------------------------- /books/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justdjango/django_htmx_dynamic_forms/HEAD/books/forms.py -------------------------------------------------------------------------------- /books/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justdjango/django_htmx_dynamic_forms/HEAD/books/migrations/0001_initial.py -------------------------------------------------------------------------------- /books/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /books/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justdjango/django_htmx_dynamic_forms/HEAD/books/models.py -------------------------------------------------------------------------------- /books/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justdjango/django_htmx_dynamic_forms/HEAD/books/tests.py -------------------------------------------------------------------------------- /books/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justdjango/django_htmx_dynamic_forms/HEAD/books/views.py -------------------------------------------------------------------------------- /djforms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djforms/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justdjango/django_htmx_dynamic_forms/HEAD/djforms/asgi.py -------------------------------------------------------------------------------- /djforms/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justdjango/django_htmx_dynamic_forms/HEAD/djforms/settings.py -------------------------------------------------------------------------------- /djforms/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justdjango/django_htmx_dynamic_forms/HEAD/djforms/urls.py -------------------------------------------------------------------------------- /djforms/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justdjango/django_htmx_dynamic_forms/HEAD/djforms/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justdjango/django_htmx_dynamic_forms/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justdjango/django_htmx_dynamic_forms/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justdjango/django_htmx_dynamic_forms/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/create_book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justdjango/django_htmx_dynamic_forms/HEAD/templates/create_book.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justdjango/django_htmx_dynamic_forms/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/partials/book_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justdjango/django_htmx_dynamic_forms/HEAD/templates/partials/book_detail.html -------------------------------------------------------------------------------- /templates/partials/book_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justdjango/django_htmx_dynamic_forms/HEAD/templates/partials/book_form.html --------------------------------------------------------------------------------