dms/jci/urls.py

11 lines
327 B
Python

from django.conf.urls import url
from jci.views import get_intent, get_standard, jci_list
urlpatterns = [
url(r'intent/(?P<intent_id>[0-9]+)$', get_intent, name='intent_details'),
url(r'standard/(?P<standard_id>[0-9]+)$', get_standard, name='standard_details'),
url(r'$', jci_list, name='jci_home'),
]