Stripped personal data from development repository
Samo Penic
2019-02-20 83c3f647c35477564b77cbc5b36d37d793d5442a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from django.urls import path
 
from . import views
 
urlpatterns = [
    path('',views.index, name='index'),
    path('list',views.index, name='problemlist'),
    path('grouplist', views.problemgrouplist, name='problemgrouplist'),
    path('<int:pk>/addtoexam', views.addProblemToExam, name='addtoexam'),
    path('<int:pk>/addgrouptoexam', views.addProblemGroupToExam, name='addgrouptoexam'),
    path('problemgroupnew',views.ProblemGroupNewView.as_view(), name='problemgroupnew'),
    path('<int:pk>/problemgroupdetail', views.ProblemGroupDetailView.as_view(), name='problemgroupdetail'),
 
]