mirror of
https://github.com/django-components/django-components.git
synced 2025-11-12 03:53:47 +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 / 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
Run tests / test_sampleproject (3.13) (push) Waiting to run
12 lines
507 B
Python
12 lines
507 B
Python
from django.urls import path
|
|
|
|
from components.calendar.calendar import Calendar, CalendarRelative
|
|
from components.greeting import Greeting
|
|
from components.nested.calendar.calendar import CalendarNested
|
|
|
|
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"),
|
|
]
|