You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
483 B
10 lines
483 B
from django.urls import path |
|
from .views import login_view, generation, resultat_appreciations, logout_view, generer_appreciation_ajax |
|
|
|
urlpatterns = [ |
|
path('login/', login_view, name='login'), |
|
path('generation/', generation, name='generation'), |
|
path('resultat/', resultat_appreciations, name='resultat_appreciations'), |
|
path('logout/', logout_view, name='logout'), |
|
path('generer_appreciation_ajax/', generer_appreciation_ajax, name='generer_appreciation_ajax'), |
|
] |