├── crispy-forms-1 ├── .gitignore ├── core │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ ├── base.html │ │ └── index.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── crispy_forms_project │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── manage.py ├── crispy-forms-2 ├── .gitignore ├── core │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ ├── base.html │ │ ├── index.html │ │ └── profile.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── crispy_forms_project │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── manage.py ├── crispy-forms-3 ├── .gitignore ├── core │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ ├── base.html │ │ ├── index.html │ │ ├── partials │ │ │ └── field.html │ │ └── profile.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── crispy_forms_project │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── manage.py └── starter-code ├── .gitignore ├── core ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── templates │ ├── base.html │ └── index.html ├── tests.py ├── urls.py └── views.py ├── crispy_forms_project ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py └── manage.py /crispy-forms-1/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | db.sqlite3 4 | notes*.txt -------------------------------------------------------------------------------- /crispy-forms-1/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crispy-forms-1/core/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /crispy-forms-1/core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-1/core/apps.py -------------------------------------------------------------------------------- /crispy-forms-1/core/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-1/core/forms.py -------------------------------------------------------------------------------- /crispy-forms-1/core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crispy-forms-1/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-1/core/models.py -------------------------------------------------------------------------------- /crispy-forms-1/core/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-1/core/templates/base.html -------------------------------------------------------------------------------- /crispy-forms-1/core/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-1/core/templates/index.html -------------------------------------------------------------------------------- /crispy-forms-1/core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-1/core/tests.py -------------------------------------------------------------------------------- /crispy-forms-1/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-1/core/urls.py -------------------------------------------------------------------------------- /crispy-forms-1/core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-1/core/views.py -------------------------------------------------------------------------------- /crispy-forms-1/crispy_forms_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crispy-forms-1/crispy_forms_project/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-1/crispy_forms_project/asgi.py -------------------------------------------------------------------------------- /crispy-forms-1/crispy_forms_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-1/crispy_forms_project/settings.py -------------------------------------------------------------------------------- /crispy-forms-1/crispy_forms_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-1/crispy_forms_project/urls.py -------------------------------------------------------------------------------- /crispy-forms-1/crispy_forms_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-1/crispy_forms_project/wsgi.py -------------------------------------------------------------------------------- /crispy-forms-1/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-1/manage.py -------------------------------------------------------------------------------- /crispy-forms-2/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | db.sqlite3 4 | notes*.txt -------------------------------------------------------------------------------- /crispy-forms-2/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crispy-forms-2/core/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /crispy-forms-2/core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-2/core/apps.py -------------------------------------------------------------------------------- /crispy-forms-2/core/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-2/core/forms.py -------------------------------------------------------------------------------- /crispy-forms-2/core/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-2/core/migrations/0001_initial.py -------------------------------------------------------------------------------- /crispy-forms-2/core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crispy-forms-2/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-2/core/models.py -------------------------------------------------------------------------------- /crispy-forms-2/core/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-2/core/templates/base.html -------------------------------------------------------------------------------- /crispy-forms-2/core/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-2/core/templates/index.html -------------------------------------------------------------------------------- /crispy-forms-2/core/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-2/core/templates/profile.html -------------------------------------------------------------------------------- /crispy-forms-2/core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-2/core/tests.py -------------------------------------------------------------------------------- /crispy-forms-2/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-2/core/urls.py -------------------------------------------------------------------------------- /crispy-forms-2/core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-2/core/views.py -------------------------------------------------------------------------------- /crispy-forms-2/crispy_forms_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crispy-forms-2/crispy_forms_project/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-2/crispy_forms_project/asgi.py -------------------------------------------------------------------------------- /crispy-forms-2/crispy_forms_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-2/crispy_forms_project/settings.py -------------------------------------------------------------------------------- /crispy-forms-2/crispy_forms_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-2/crispy_forms_project/urls.py -------------------------------------------------------------------------------- /crispy-forms-2/crispy_forms_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-2/crispy_forms_project/wsgi.py -------------------------------------------------------------------------------- /crispy-forms-2/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-2/manage.py -------------------------------------------------------------------------------- /crispy-forms-3/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | db.sqlite3 4 | notes*.txt -------------------------------------------------------------------------------- /crispy-forms-3/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crispy-forms-3/core/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /crispy-forms-3/core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-3/core/apps.py -------------------------------------------------------------------------------- /crispy-forms-3/core/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-3/core/forms.py -------------------------------------------------------------------------------- /crispy-forms-3/core/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-3/core/migrations/0001_initial.py -------------------------------------------------------------------------------- /crispy-forms-3/core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crispy-forms-3/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-3/core/models.py -------------------------------------------------------------------------------- /crispy-forms-3/core/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-3/core/templates/base.html -------------------------------------------------------------------------------- /crispy-forms-3/core/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-3/core/templates/index.html -------------------------------------------------------------------------------- /crispy-forms-3/core/templates/partials/field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-3/core/templates/partials/field.html -------------------------------------------------------------------------------- /crispy-forms-3/core/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-3/core/templates/profile.html -------------------------------------------------------------------------------- /crispy-forms-3/core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-3/core/tests.py -------------------------------------------------------------------------------- /crispy-forms-3/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-3/core/urls.py -------------------------------------------------------------------------------- /crispy-forms-3/core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-3/core/views.py -------------------------------------------------------------------------------- /crispy-forms-3/crispy_forms_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crispy-forms-3/crispy_forms_project/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-3/crispy_forms_project/asgi.py -------------------------------------------------------------------------------- /crispy-forms-3/crispy_forms_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-3/crispy_forms_project/settings.py -------------------------------------------------------------------------------- /crispy-forms-3/crispy_forms_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-3/crispy_forms_project/urls.py -------------------------------------------------------------------------------- /crispy-forms-3/crispy_forms_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-3/crispy_forms_project/wsgi.py -------------------------------------------------------------------------------- /crispy-forms-3/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/crispy-forms-3/manage.py -------------------------------------------------------------------------------- /starter-code/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | db.sqlite3 4 | notes*.txt -------------------------------------------------------------------------------- /starter-code/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /starter-code/core/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /starter-code/core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/starter-code/core/apps.py -------------------------------------------------------------------------------- /starter-code/core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /starter-code/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/starter-code/core/models.py -------------------------------------------------------------------------------- /starter-code/core/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/starter-code/core/templates/base.html -------------------------------------------------------------------------------- /starter-code/core/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/starter-code/core/templates/index.html -------------------------------------------------------------------------------- /starter-code/core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/starter-code/core/tests.py -------------------------------------------------------------------------------- /starter-code/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/starter-code/core/urls.py -------------------------------------------------------------------------------- /starter-code/core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/starter-code/core/views.py -------------------------------------------------------------------------------- /starter-code/crispy_forms_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /starter-code/crispy_forms_project/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/starter-code/crispy_forms_project/asgi.py -------------------------------------------------------------------------------- /starter-code/crispy_forms_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/starter-code/crispy_forms_project/settings.py -------------------------------------------------------------------------------- /starter-code/crispy_forms_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/starter-code/crispy_forms_project/urls.py -------------------------------------------------------------------------------- /starter-code/crispy_forms_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/starter-code/crispy_forms_project/wsgi.py -------------------------------------------------------------------------------- /starter-code/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/crispy-forms-htmx/HEAD/starter-code/manage.py --------------------------------------------------------------------------------