datatracker/ietf/dbtemplate/urls.py

10 lines
277 B
Python

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