Remove ability to cancel a break session. Fixes #2703.
- Legacy-Id: 16105
Note: SVN reference [16092] has been migrated to Git commit b5850d5c7f
10 lines
244 B
Python
10 lines
244 B
Python
|
|
|
|
from ietf.dbtemplate import views
|
|
from ietf.utils.urls import url
|
|
|
|
urlpatterns = [
|
|
url(r'^(?P<acronym>[-a-z0-9]+)/$', views.group_template_list),
|
|
url(r'^(?P<acronym>[-a-z0-9]+)/(?P<template_id>[\d]+)/$', views.group_template_edit),
|
|
]
|