Permalink
Switch branches/tags
Nothing to show
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time. Cannot retrieve contributors at this time
12 lines (7 sloc) 203 Bytes
from django.urls import path
from evap.student import views
app_name = "student"
urlpatterns = [
path("", views.index, name="index"),
path("vote/<int:course_id>", views.vote, name="vote"),
]