mirror of
https://github.com/Rushilwiz/NewViewsNews.git
synced 2025-04-09 14:50:16 -04:00
10 lines
292 B
Python
10 lines
292 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.spectrum, name='spectrum'),
|
|
path('left/', views.left, name='spectrum-left'),
|
|
path('center/', views.center, name='spectrum-center'),
|
|
path('right/', views.right, name='spectrum-right'),
|
|
]
|