├── .gitignore ├── .python-version ├── LICENSE ├── README.md ├── Toast.png ├── components ├── a │ └── index.html ├── accordion │ ├── content.html │ ├── index.html │ ├── item.html │ └── trigger.html ├── alert │ ├── description.html │ ├── index.html │ └── title.html ├── alert_dialog │ ├── action.html │ ├── cancel.html │ ├── content.html │ ├── description.html │ ├── footer.html │ ├── header.html │ ├── index.html │ ├── title.html │ └── trigger.html ├── badge │ └── index.html ├── button │ └── index.html ├── card │ ├── content.html │ ├── description.html │ ├── footer.html │ ├── header.html │ ├── index.html │ └── title.html ├── checkbox │ └── index.html ├── combobox │ └── index.html ├── command │ ├── empty.html │ ├── group.html │ ├── index.html │ ├── input.html │ ├── item.html │ ├── list.html │ ├── separator.html │ └── shortcut.html ├── command_dialog │ └── index.html ├── dialog │ ├── content.html │ ├── description.html │ ├── footer.html │ ├── header.html │ ├── index.html │ ├── title.html │ └── trigger.html ├── dropdown_menu │ ├── content.html │ ├── index.html │ ├── item.html │ ├── label.html │ ├── separator.html │ └── trigger.html ├── form │ ├── description.html │ ├── error.html │ ├── field.html │ ├── fieldset.html │ └── label.html ├── input.css ├── input │ └── index.html ├── label │ └── index.html ├── navigation_menu │ ├── content.html │ ├── index.html │ ├── item.html │ ├── link.html │ ├── link_details.html │ ├── list.html │ └── trigger.html ├── popover │ ├── content.html │ ├── index.html │ └── trigger.html ├── progress │ └── index.html ├── select │ ├── content.html │ ├── index.html │ ├── item.html │ ├── trigger.html │ └── value.html ├── separator │ └── index.html ├── sheet │ ├── content.html │ ├── description.html │ ├── header.html │ ├── index.html │ ├── title.html │ └── trigger.html ├── table │ ├── body.html │ ├── caption.html │ ├── cell.html │ ├── empty.html │ ├── footer.html │ ├── head.html │ ├── header.html │ ├── index.html │ └── row.html ├── tabs │ ├── content.html │ ├── index.html │ ├── list.html │ └── trigger.html ├── textarea │ └── index.html └── toast │ ├── content.html │ ├── index.html │ └── trigger.html ├── copier.yml ├── docs ├── .copier-answers.yml ├── .dockerignore ├── .gitignore ├── .python-version ├── docker_startup.sh ├── docs │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── settings_production.py │ ├── templatetags │ │ ├── __init__.py │ │ └── code_display.py │ ├── urls.py │ ├── views.py │ └── wsgi.py ├── fly.toml ├── manage.py ├── package-lock.json ├── package.json ├── prod.Dockerfile ├── pyproject.toml ├── static │ ├── css │ │ ├── input.css │ │ ├── output.css │ │ └── prism.css │ └── js │ │ ├── alpine.min.js │ │ ├── htmx.min.js │ │ └── prism.min.js ├── templates │ ├── accordion.html │ ├── alert.html │ ├── alert_dialog.html │ ├── badge.html │ ├── base.html │ ├── button.html │ ├── card.html │ ├── checkbox.html │ ├── combobox.html │ ├── command.html │ ├── command_dialog.html │ ├── cotton │ │ ├── accordion │ │ │ ├── content.html │ │ │ ├── index.html │ │ │ ├── item.html │ │ │ └── trigger.html │ │ ├── alert │ │ │ ├── description.html │ │ │ ├── index.html │ │ │ └── title.html │ │ ├── alert_dialog │ │ │ ├── action.html │ │ │ ├── cancel.html │ │ │ ├── content.html │ │ │ ├── description.html │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ ├── index.html │ │ │ ├── title.html │ │ │ └── trigger.html │ │ ├── badge │ │ │ └── index.html │ │ ├── button │ │ │ └── index.html │ │ ├── card │ │ │ ├── content.html │ │ │ ├── description.html │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ ├── index.html │ │ │ └── title.html │ │ ├── checkbox │ │ │ └── index.html │ │ ├── combobox │ │ │ └── index.html │ │ ├── command │ │ │ ├── empty.html │ │ │ ├── group.html │ │ │ ├── index.html │ │ │ ├── input.html │ │ │ ├── item.html │ │ │ ├── list.html │ │ │ ├── separator.html │ │ │ └── shortcut.html │ │ ├── command_dialog │ │ │ └── index.html │ │ ├── dialog │ │ │ ├── content.html │ │ │ ├── description.html │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ ├── index.html │ │ │ ├── title.html │ │ │ └── trigger.html │ │ ├── docs │ │ │ ├── code_example.html │ │ │ ├── component_section.html │ │ │ ├── demo_section.html │ │ │ ├── example_item.html │ │ │ ├── layout │ │ │ │ └── content.html │ │ │ ├── link.html │ │ │ ├── page_header.html │ │ │ └── para.html │ │ ├── dropdown_menu │ │ │ ├── content.html │ │ │ ├── index.html │ │ │ ├── item.html │ │ │ ├── label.html │ │ │ ├── separator.html │ │ │ └── trigger.html │ │ ├── form │ │ │ ├── description.html │ │ │ ├── error.html │ │ │ ├── field.html │ │ │ ├── fieldset.html │ │ │ └── label.html │ │ ├── input │ │ │ └── index.html │ │ ├── label │ │ │ └── index.html │ │ ├── navigation_menu │ │ │ ├── content.html │ │ │ ├── index.html │ │ │ ├── item.html │ │ │ ├── link.html │ │ │ ├── link_details.html │ │ │ ├── list.html │ │ │ └── trigger.html │ │ ├── popover │ │ │ ├── content.html │ │ │ ├── index.html │ │ │ └── trigger.html │ │ ├── progress │ │ │ └── index.html │ │ ├── select │ │ │ ├── content.html │ │ │ ├── index.html │ │ │ ├── item.html │ │ │ ├── trigger.html │ │ │ └── value.html │ │ ├── separator │ │ │ └── index.html │ │ ├── sheet │ │ │ ├── content.html │ │ │ ├── description.html │ │ │ ├── header.html │ │ │ ├── index.html │ │ │ ├── title.html │ │ │ └── trigger.html │ │ ├── table │ │ │ ├── body.html │ │ │ ├── caption.html │ │ │ ├── cell.html │ │ │ ├── empty.html │ │ │ ├── footer.html │ │ │ ├── head.html │ │ │ ├── header.html │ │ │ ├── index.html │ │ │ └── row.html │ │ ├── tabs │ │ │ ├── content.html │ │ │ ├── index.html │ │ │ ├── list.html │ │ │ └── trigger.html │ │ ├── textarea │ │ │ └── index.html │ │ └── toast │ │ │ ├── content.html │ │ │ ├── index.html │ │ │ └── trigger.html │ ├── dialog.html │ ├── dropdown_menu.html │ ├── form.html │ ├── input.html │ ├── installation.html │ ├── introduction.html │ ├── label.html │ ├── navigation_menu.html │ ├── partials │ │ └── click.html │ ├── popover.html │ ├── progress.html │ ├── select.html │ ├── separator.html │ ├── sheet.html │ ├── table.html │ ├── tabs.html │ ├── textarea.html │ └── toast.html └── uv.lock ├── pyproject.toml ├── src └── shadcn_django │ ├── __init__.py │ ├── __main__.py │ ├── add.py │ ├── components.py │ ├── console.py │ ├── constants.py │ ├── initialize.py │ ├── list.py │ └── main.py └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/README.md -------------------------------------------------------------------------------- /Toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/Toast.png -------------------------------------------------------------------------------- /components/a/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/a/index.html -------------------------------------------------------------------------------- /components/accordion/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/accordion/content.html -------------------------------------------------------------------------------- /components/accordion/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/accordion/index.html -------------------------------------------------------------------------------- /components/accordion/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/accordion/item.html -------------------------------------------------------------------------------- /components/accordion/trigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/accordion/trigger.html -------------------------------------------------------------------------------- /components/alert/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/alert/description.html -------------------------------------------------------------------------------- /components/alert/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/alert/index.html -------------------------------------------------------------------------------- /components/alert/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/alert/title.html -------------------------------------------------------------------------------- /components/alert_dialog/action.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/alert_dialog/action.html -------------------------------------------------------------------------------- /components/alert_dialog/cancel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/alert_dialog/cancel.html -------------------------------------------------------------------------------- /components/alert_dialog/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/alert_dialog/content.html -------------------------------------------------------------------------------- /components/alert_dialog/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/alert_dialog/description.html -------------------------------------------------------------------------------- /components/alert_dialog/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/alert_dialog/footer.html -------------------------------------------------------------------------------- /components/alert_dialog/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/alert_dialog/header.html -------------------------------------------------------------------------------- /components/alert_dialog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/alert_dialog/index.html -------------------------------------------------------------------------------- /components/alert_dialog/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/alert_dialog/title.html -------------------------------------------------------------------------------- /components/alert_dialog/trigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/alert_dialog/trigger.html -------------------------------------------------------------------------------- /components/badge/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/badge/index.html -------------------------------------------------------------------------------- /components/button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/button/index.html -------------------------------------------------------------------------------- /components/card/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/card/content.html -------------------------------------------------------------------------------- /components/card/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/card/description.html -------------------------------------------------------------------------------- /components/card/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/card/footer.html -------------------------------------------------------------------------------- /components/card/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/card/header.html -------------------------------------------------------------------------------- /components/card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/card/index.html -------------------------------------------------------------------------------- /components/card/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/card/title.html -------------------------------------------------------------------------------- /components/checkbox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/checkbox/index.html -------------------------------------------------------------------------------- /components/combobox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/combobox/index.html -------------------------------------------------------------------------------- /components/command/empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/command/empty.html -------------------------------------------------------------------------------- /components/command/group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/command/group.html -------------------------------------------------------------------------------- /components/command/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/command/index.html -------------------------------------------------------------------------------- /components/command/input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/command/input.html -------------------------------------------------------------------------------- /components/command/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/command/item.html -------------------------------------------------------------------------------- /components/command/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/command/list.html -------------------------------------------------------------------------------- /components/command/separator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/command/separator.html -------------------------------------------------------------------------------- /components/command/shortcut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/command/shortcut.html -------------------------------------------------------------------------------- /components/command_dialog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/command_dialog/index.html -------------------------------------------------------------------------------- /components/dialog/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/dialog/content.html -------------------------------------------------------------------------------- /components/dialog/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/dialog/description.html -------------------------------------------------------------------------------- /components/dialog/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/dialog/footer.html -------------------------------------------------------------------------------- /components/dialog/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/dialog/header.html -------------------------------------------------------------------------------- /components/dialog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/dialog/index.html -------------------------------------------------------------------------------- /components/dialog/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/dialog/title.html -------------------------------------------------------------------------------- /components/dialog/trigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/dialog/trigger.html -------------------------------------------------------------------------------- /components/dropdown_menu/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/dropdown_menu/content.html -------------------------------------------------------------------------------- /components/dropdown_menu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/dropdown_menu/index.html -------------------------------------------------------------------------------- /components/dropdown_menu/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/dropdown_menu/item.html -------------------------------------------------------------------------------- /components/dropdown_menu/label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/dropdown_menu/label.html -------------------------------------------------------------------------------- /components/dropdown_menu/separator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/dropdown_menu/separator.html -------------------------------------------------------------------------------- /components/dropdown_menu/trigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/dropdown_menu/trigger.html -------------------------------------------------------------------------------- /components/form/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/form/description.html -------------------------------------------------------------------------------- /components/form/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/form/error.html -------------------------------------------------------------------------------- /components/form/field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/form/field.html -------------------------------------------------------------------------------- /components/form/fieldset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/form/fieldset.html -------------------------------------------------------------------------------- /components/form/label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/form/label.html -------------------------------------------------------------------------------- /components/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/input.css -------------------------------------------------------------------------------- /components/input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/input/index.html -------------------------------------------------------------------------------- /components/label/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/label/index.html -------------------------------------------------------------------------------- /components/navigation_menu/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/navigation_menu/content.html -------------------------------------------------------------------------------- /components/navigation_menu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/navigation_menu/index.html -------------------------------------------------------------------------------- /components/navigation_menu/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/navigation_menu/item.html -------------------------------------------------------------------------------- /components/navigation_menu/link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/navigation_menu/link.html -------------------------------------------------------------------------------- /components/navigation_menu/link_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/navigation_menu/link_details.html -------------------------------------------------------------------------------- /components/navigation_menu/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/navigation_menu/list.html -------------------------------------------------------------------------------- /components/navigation_menu/trigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/navigation_menu/trigger.html -------------------------------------------------------------------------------- /components/popover/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/popover/content.html -------------------------------------------------------------------------------- /components/popover/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/popover/index.html -------------------------------------------------------------------------------- /components/popover/trigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/popover/trigger.html -------------------------------------------------------------------------------- /components/progress/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/progress/index.html -------------------------------------------------------------------------------- /components/select/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/select/content.html -------------------------------------------------------------------------------- /components/select/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/select/index.html -------------------------------------------------------------------------------- /components/select/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/select/item.html -------------------------------------------------------------------------------- /components/select/trigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/select/trigger.html -------------------------------------------------------------------------------- /components/select/value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/select/value.html -------------------------------------------------------------------------------- /components/separator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/separator/index.html -------------------------------------------------------------------------------- /components/sheet/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/sheet/content.html -------------------------------------------------------------------------------- /components/sheet/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/sheet/description.html -------------------------------------------------------------------------------- /components/sheet/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/sheet/header.html -------------------------------------------------------------------------------- /components/sheet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/sheet/index.html -------------------------------------------------------------------------------- /components/sheet/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/sheet/title.html -------------------------------------------------------------------------------- /components/sheet/trigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/sheet/trigger.html -------------------------------------------------------------------------------- /components/table/body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/table/body.html -------------------------------------------------------------------------------- /components/table/caption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/table/caption.html -------------------------------------------------------------------------------- /components/table/cell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/table/cell.html -------------------------------------------------------------------------------- /components/table/empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/table/empty.html -------------------------------------------------------------------------------- /components/table/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/table/footer.html -------------------------------------------------------------------------------- /components/table/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/table/head.html -------------------------------------------------------------------------------- /components/table/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/table/header.html -------------------------------------------------------------------------------- /components/table/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/table/index.html -------------------------------------------------------------------------------- /components/table/row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/table/row.html -------------------------------------------------------------------------------- /components/tabs/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/tabs/content.html -------------------------------------------------------------------------------- /components/tabs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/tabs/index.html -------------------------------------------------------------------------------- /components/tabs/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/tabs/list.html -------------------------------------------------------------------------------- /components/tabs/trigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/tabs/trigger.html -------------------------------------------------------------------------------- /components/textarea/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/textarea/index.html -------------------------------------------------------------------------------- /components/toast/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/toast/content.html -------------------------------------------------------------------------------- /components/toast/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/toast/index.html -------------------------------------------------------------------------------- /components/toast/trigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/components/toast/trigger.html -------------------------------------------------------------------------------- /copier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/copier.yml -------------------------------------------------------------------------------- /docs/.copier-answers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/.copier-answers.yml -------------------------------------------------------------------------------- /docs/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/.dockerignore -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /docs/docker_startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/docker_startup.sh -------------------------------------------------------------------------------- /docs/docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/docs/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/docs/asgi.py -------------------------------------------------------------------------------- /docs/docs/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/docs/settings.py -------------------------------------------------------------------------------- /docs/docs/settings_production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/docs/settings_production.py -------------------------------------------------------------------------------- /docs/docs/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/docs/templatetags/code_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/docs/templatetags/code_display.py -------------------------------------------------------------------------------- /docs/docs/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/docs/urls.py -------------------------------------------------------------------------------- /docs/docs/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/docs/views.py -------------------------------------------------------------------------------- /docs/docs/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/docs/wsgi.py -------------------------------------------------------------------------------- /docs/fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/fly.toml -------------------------------------------------------------------------------- /docs/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/manage.py -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/prod.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/prod.Dockerfile -------------------------------------------------------------------------------- /docs/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/pyproject.toml -------------------------------------------------------------------------------- /docs/static/css/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/static/css/input.css -------------------------------------------------------------------------------- /docs/static/css/output.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/static/css/output.css -------------------------------------------------------------------------------- /docs/static/css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/static/css/prism.css -------------------------------------------------------------------------------- /docs/static/js/alpine.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/static/js/alpine.min.js -------------------------------------------------------------------------------- /docs/static/js/htmx.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/static/js/htmx.min.js -------------------------------------------------------------------------------- /docs/static/js/prism.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/static/js/prism.min.js -------------------------------------------------------------------------------- /docs/templates/accordion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/accordion.html -------------------------------------------------------------------------------- /docs/templates/alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/alert.html -------------------------------------------------------------------------------- /docs/templates/alert_dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/alert_dialog.html -------------------------------------------------------------------------------- /docs/templates/badge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/badge.html -------------------------------------------------------------------------------- /docs/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/base.html -------------------------------------------------------------------------------- /docs/templates/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/button.html -------------------------------------------------------------------------------- /docs/templates/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/card.html -------------------------------------------------------------------------------- /docs/templates/checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/checkbox.html -------------------------------------------------------------------------------- /docs/templates/combobox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/combobox.html -------------------------------------------------------------------------------- /docs/templates/command.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/command.html -------------------------------------------------------------------------------- /docs/templates/command_dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/command_dialog.html -------------------------------------------------------------------------------- /docs/templates/cotton/accordion/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/accordion/content.html -------------------------------------------------------------------------------- /docs/templates/cotton/accordion/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/accordion/index.html -------------------------------------------------------------------------------- /docs/templates/cotton/accordion/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/accordion/item.html -------------------------------------------------------------------------------- /docs/templates/cotton/accordion/trigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/accordion/trigger.html -------------------------------------------------------------------------------- /docs/templates/cotton/alert/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/alert/description.html -------------------------------------------------------------------------------- /docs/templates/cotton/alert/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/alert/index.html -------------------------------------------------------------------------------- /docs/templates/cotton/alert/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/alert/title.html -------------------------------------------------------------------------------- /docs/templates/cotton/alert_dialog/action.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/alert_dialog/action.html -------------------------------------------------------------------------------- /docs/templates/cotton/alert_dialog/cancel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/alert_dialog/cancel.html -------------------------------------------------------------------------------- /docs/templates/cotton/alert_dialog/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/alert_dialog/content.html -------------------------------------------------------------------------------- /docs/templates/cotton/alert_dialog/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/alert_dialog/description.html -------------------------------------------------------------------------------- /docs/templates/cotton/alert_dialog/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/alert_dialog/footer.html -------------------------------------------------------------------------------- /docs/templates/cotton/alert_dialog/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/alert_dialog/header.html -------------------------------------------------------------------------------- /docs/templates/cotton/alert_dialog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/alert_dialog/index.html -------------------------------------------------------------------------------- /docs/templates/cotton/alert_dialog/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/alert_dialog/title.html -------------------------------------------------------------------------------- /docs/templates/cotton/alert_dialog/trigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/alert_dialog/trigger.html -------------------------------------------------------------------------------- /docs/templates/cotton/badge/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/badge/index.html -------------------------------------------------------------------------------- /docs/templates/cotton/button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/button/index.html -------------------------------------------------------------------------------- /docs/templates/cotton/card/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/card/content.html -------------------------------------------------------------------------------- /docs/templates/cotton/card/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/card/description.html -------------------------------------------------------------------------------- /docs/templates/cotton/card/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/card/footer.html -------------------------------------------------------------------------------- /docs/templates/cotton/card/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/card/header.html -------------------------------------------------------------------------------- /docs/templates/cotton/card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/card/index.html -------------------------------------------------------------------------------- /docs/templates/cotton/card/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/card/title.html -------------------------------------------------------------------------------- /docs/templates/cotton/checkbox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/checkbox/index.html -------------------------------------------------------------------------------- /docs/templates/cotton/combobox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/combobox/index.html -------------------------------------------------------------------------------- /docs/templates/cotton/command/empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/command/empty.html -------------------------------------------------------------------------------- /docs/templates/cotton/command/group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/command/group.html -------------------------------------------------------------------------------- /docs/templates/cotton/command/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/command/index.html -------------------------------------------------------------------------------- /docs/templates/cotton/command/input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/command/input.html -------------------------------------------------------------------------------- /docs/templates/cotton/command/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/command/item.html -------------------------------------------------------------------------------- /docs/templates/cotton/command/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/command/list.html -------------------------------------------------------------------------------- /docs/templates/cotton/command/separator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/command/separator.html -------------------------------------------------------------------------------- /docs/templates/cotton/command/shortcut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/command/shortcut.html -------------------------------------------------------------------------------- /docs/templates/cotton/command_dialog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/command_dialog/index.html -------------------------------------------------------------------------------- /docs/templates/cotton/dialog/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/dialog/content.html -------------------------------------------------------------------------------- /docs/templates/cotton/dialog/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/dialog/description.html -------------------------------------------------------------------------------- /docs/templates/cotton/dialog/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/dialog/footer.html -------------------------------------------------------------------------------- /docs/templates/cotton/dialog/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/dialog/header.html -------------------------------------------------------------------------------- /docs/templates/cotton/dialog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/dialog/index.html -------------------------------------------------------------------------------- /docs/templates/cotton/dialog/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/dialog/title.html -------------------------------------------------------------------------------- /docs/templates/cotton/dialog/trigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/dialog/trigger.html -------------------------------------------------------------------------------- /docs/templates/cotton/docs/code_example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/docs/code_example.html -------------------------------------------------------------------------------- /docs/templates/cotton/docs/component_section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/docs/component_section.html -------------------------------------------------------------------------------- /docs/templates/cotton/docs/demo_section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/docs/demo_section.html -------------------------------------------------------------------------------- /docs/templates/cotton/docs/example_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/docs/example_item.html -------------------------------------------------------------------------------- /docs/templates/cotton/docs/layout/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/docs/layout/content.html -------------------------------------------------------------------------------- /docs/templates/cotton/docs/link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/docs/link.html -------------------------------------------------------------------------------- /docs/templates/cotton/docs/page_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/docs/page_header.html -------------------------------------------------------------------------------- /docs/templates/cotton/docs/para.html: -------------------------------------------------------------------------------- 1 |
{{ slot }}
2 | -------------------------------------------------------------------------------- /docs/templates/cotton/dropdown_menu/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/dropdown_menu/content.html -------------------------------------------------------------------------------- /docs/templates/cotton/dropdown_menu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/dropdown_menu/index.html -------------------------------------------------------------------------------- /docs/templates/cotton/dropdown_menu/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/dropdown_menu/item.html -------------------------------------------------------------------------------- /docs/templates/cotton/dropdown_menu/label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/dropdown_menu/label.html -------------------------------------------------------------------------------- /docs/templates/cotton/dropdown_menu/separator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/dropdown_menu/separator.html -------------------------------------------------------------------------------- /docs/templates/cotton/dropdown_menu/trigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/dropdown_menu/trigger.html -------------------------------------------------------------------------------- /docs/templates/cotton/form/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/form/description.html -------------------------------------------------------------------------------- /docs/templates/cotton/form/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/form/error.html -------------------------------------------------------------------------------- /docs/templates/cotton/form/field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/form/field.html -------------------------------------------------------------------------------- /docs/templates/cotton/form/fieldset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/form/fieldset.html -------------------------------------------------------------------------------- /docs/templates/cotton/form/label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/form/label.html -------------------------------------------------------------------------------- /docs/templates/cotton/input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/input/index.html -------------------------------------------------------------------------------- /docs/templates/cotton/label/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/label/index.html -------------------------------------------------------------------------------- /docs/templates/cotton/navigation_menu/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/navigation_menu/content.html -------------------------------------------------------------------------------- /docs/templates/cotton/navigation_menu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/navigation_menu/index.html -------------------------------------------------------------------------------- /docs/templates/cotton/navigation_menu/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/navigation_menu/item.html -------------------------------------------------------------------------------- /docs/templates/cotton/navigation_menu/link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/navigation_menu/link.html -------------------------------------------------------------------------------- /docs/templates/cotton/navigation_menu/link_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/navigation_menu/link_details.html -------------------------------------------------------------------------------- /docs/templates/cotton/navigation_menu/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/navigation_menu/list.html -------------------------------------------------------------------------------- /docs/templates/cotton/navigation_menu/trigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/navigation_menu/trigger.html -------------------------------------------------------------------------------- /docs/templates/cotton/popover/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/popover/content.html -------------------------------------------------------------------------------- /docs/templates/cotton/popover/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/popover/index.html -------------------------------------------------------------------------------- /docs/templates/cotton/popover/trigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/popover/trigger.html -------------------------------------------------------------------------------- /docs/templates/cotton/progress/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/progress/index.html -------------------------------------------------------------------------------- /docs/templates/cotton/select/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/select/content.html -------------------------------------------------------------------------------- /docs/templates/cotton/select/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/select/index.html -------------------------------------------------------------------------------- /docs/templates/cotton/select/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/select/item.html -------------------------------------------------------------------------------- /docs/templates/cotton/select/trigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/select/trigger.html -------------------------------------------------------------------------------- /docs/templates/cotton/select/value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/select/value.html -------------------------------------------------------------------------------- /docs/templates/cotton/separator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/separator/index.html -------------------------------------------------------------------------------- /docs/templates/cotton/sheet/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/sheet/content.html -------------------------------------------------------------------------------- /docs/templates/cotton/sheet/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/sheet/description.html -------------------------------------------------------------------------------- /docs/templates/cotton/sheet/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/sheet/header.html -------------------------------------------------------------------------------- /docs/templates/cotton/sheet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/sheet/index.html -------------------------------------------------------------------------------- /docs/templates/cotton/sheet/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/sheet/title.html -------------------------------------------------------------------------------- /docs/templates/cotton/sheet/trigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/sheet/trigger.html -------------------------------------------------------------------------------- /docs/templates/cotton/table/body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/table/body.html -------------------------------------------------------------------------------- /docs/templates/cotton/table/caption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/table/caption.html -------------------------------------------------------------------------------- /docs/templates/cotton/table/cell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/table/cell.html -------------------------------------------------------------------------------- /docs/templates/cotton/table/empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/table/empty.html -------------------------------------------------------------------------------- /docs/templates/cotton/table/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/table/footer.html -------------------------------------------------------------------------------- /docs/templates/cotton/table/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/table/head.html -------------------------------------------------------------------------------- /docs/templates/cotton/table/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/table/header.html -------------------------------------------------------------------------------- /docs/templates/cotton/table/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/table/index.html -------------------------------------------------------------------------------- /docs/templates/cotton/table/row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/table/row.html -------------------------------------------------------------------------------- /docs/templates/cotton/tabs/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/tabs/content.html -------------------------------------------------------------------------------- /docs/templates/cotton/tabs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/tabs/index.html -------------------------------------------------------------------------------- /docs/templates/cotton/tabs/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/tabs/list.html -------------------------------------------------------------------------------- /docs/templates/cotton/tabs/trigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/tabs/trigger.html -------------------------------------------------------------------------------- /docs/templates/cotton/textarea/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/textarea/index.html -------------------------------------------------------------------------------- /docs/templates/cotton/toast/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/toast/content.html -------------------------------------------------------------------------------- /docs/templates/cotton/toast/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/toast/index.html -------------------------------------------------------------------------------- /docs/templates/cotton/toast/trigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/cotton/toast/trigger.html -------------------------------------------------------------------------------- /docs/templates/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/dialog.html -------------------------------------------------------------------------------- /docs/templates/dropdown_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/dropdown_menu.html -------------------------------------------------------------------------------- /docs/templates/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/form.html -------------------------------------------------------------------------------- /docs/templates/input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/input.html -------------------------------------------------------------------------------- /docs/templates/installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/installation.html -------------------------------------------------------------------------------- /docs/templates/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/introduction.html -------------------------------------------------------------------------------- /docs/templates/label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/label.html -------------------------------------------------------------------------------- /docs/templates/navigation_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakJariwala/shadcn-django/HEAD/docs/templates/navigation_menu.html -------------------------------------------------------------------------------- /docs/templates/partials/click.html: -------------------------------------------------------------------------------- 1 |