* Add new role for support staff. * Move dashboard/support functionality into a new Django app called "support". * Add support view for searching and regenerating certificates. * Refactor certificates views into separate files.
14 lines
356 B
Python
14 lines
356 B
Python
"""
|
|
URLs for the student support app.
|
|
"""
|
|
from django.conf.urls import patterns, url
|
|
|
|
from support import views
|
|
|
|
urlpatterns = patterns(
|
|
'',
|
|
url(r'^$', views.index, name="index"),
|
|
url(r'^certificates/?$', views.CertificatesSupportView.as_view(), name="certificates"),
|
|
url(r'^refund/?$', views.RefundSupportView.as_view(), name="refund"),
|
|
)
|