ae7268736f
With first draft version of wallpaper changer
10 lines
303 B
Python
10 lines
303 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('track/', views.NominateView.as_view(), name="nominate"),
|
|
path('vote/', views.VoteView.as_view(), name="vote"),
|
|
path('settings/', views.SettingsView.as_view(), name="settings"),
|
|
path('', views.AuthView.as_view()),
|
|
]
|