mirror of
https://github.com/django-components/django-components.git
synced 2025-09-19 20:29:44 +00:00

Some checks are pending
Docs - build & deploy / docs (push) Waiting to run
Run tests / build (ubuntu-latest, 3.10) (push) Waiting to run
Run tests / build (ubuntu-latest, 3.11) (push) Waiting to run
Run tests / build (ubuntu-latest, 3.12) (push) Waiting to run
Run tests / build (ubuntu-latest, 3.13) (push) Waiting to run
Run tests / build (ubuntu-latest, 3.8) (push) Waiting to run
Run tests / test_sampleproject (3.13) (push) Waiting to run
Run tests / build (ubuntu-latest, 3.9) (push) Waiting to run
Run tests / build (windows-latest, 3.10) (push) Waiting to run
Run tests / build (windows-latest, 3.11) (push) Waiting to run
Run tests / build (windows-latest, 3.12) (push) Waiting to run
Run tests / build (windows-latest, 3.13) (push) Waiting to run
Run tests / build (windows-latest, 3.8) (push) Waiting to run
Run tests / build (windows-latest, 3.9) (push) Waiting to run
Run tests / test_docs (3.13) (push) Waiting to run
20 lines
1,002 B
Python
20 lines
1,002 B
Python
from django.urls import path
|
|
|
|
from components.calendar.calendar import Calendar, CalendarRelative
|
|
from components.fragment import FragAlpine, FragJs, FragmentBaseAlpine, FragmentBaseHtmx, FragmentBaseJs
|
|
from components.greeting import Greeting
|
|
from components.nested.calendar.calendar import CalendarNested
|
|
from components.recursive import Recursive
|
|
|
|
urlpatterns = [
|
|
path("greeting/", Greeting.as_view(), name="greeting"),
|
|
path("calendar/", Calendar.as_view(), name="calendar"),
|
|
path("calendar-relative/", CalendarRelative.as_view(), name="calendar-relative"),
|
|
path("calendar-nested/", CalendarNested.as_view(), name="calendar-nested"),
|
|
path("recursive/", Recursive.as_view(), name="recursive"),
|
|
path("fragment/base/alpine", FragmentBaseAlpine.as_view()),
|
|
path("fragment/base/htmx", FragmentBaseHtmx.as_view()),
|
|
path("fragment/base/js", FragmentBaseJs.as_view()),
|
|
path("fragment/frag/alpine", FragAlpine.as_view()),
|
|
path("fragment/frag/js", FragJs.as_view()),
|
|
]
|