* Tested with IETF 67 and 68 data. * For testing, c_sub_cut_off_date should set to future date, otherwise a Closed page will show. - Legacy-Id: 228
9 lines
270 B
Python
9 lines
270 B
Python
from django.conf.urls.defaults import *
|
|
from ietf.meeting import models, views
|
|
|
|
urlpatterns = patterns('',
|
|
(r'^(?P<meeting_num>\d+)/agenda.(?P<html_or_txt>\S+)$', views.show_html_agenda),
|
|
(r'^(?P<meeting_num>\d+)/materials.html$', views.show_html_materials),
|
|
)
|
|
|