datatracker/ietf/dbtemplate/urls.py
2016-12-22 17:21:57 +00:00

8 lines
278 B
Python

from django.conf.urls import url
urlpatterns = [
url(r'^(?P<acronym>[-a-z0-9]+)/$', 'ietf.dbtemplate.views.template_list', name='template_list'),
url(r'^(?P<acronym>[-a-z0-9]+)/(?P<template_id>[\d]+)/$', 'ietf.dbtemplate.views.template_edit', name='template_edit'),
]