This commit contains back end changes necessary to load programs from the catalog in all contexts. The existing program munging utility is applied as late as possible to avoid conflating this work with changes to the front end; those will be made separately. ECOM-4422
11 lines
307 B
Python
11 lines
307 B
Python
"""Learner dashboard URL routing configuration"""
|
|
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^programs/$', views.program_listing, name='program_listing_view'),
|
|
url(r'^programs/(?P<program_uuid>[0-9a-f-]+)/$', views.program_details, name='program_details_view'),
|
|
]
|