Files
edx-platform/lms/djangoapps/survey/urls.py
Stu Young 367736614d INCR-259 Run python-modernize on lms/djangoapps/survey (#20561)
* run python modernize

* run isort
2019-05-21 11:35:25 -04:00

15 lines
347 B
Python

"""
URL mappings for the Survey feature
"""
from __future__ import absolute_import
from django.conf.urls import url
from survey import views
urlpatterns = [
url(r'^(?P<survey_name>[0-9A-Za-z]+)/$', views.view_survey, name='view_survey'),
url(r'^(?P<survey_name>[0-9A-Za-z]+)/answers/$', views.submit_answers, name='submit_answers'),
]