Using some more logic in views.py, less in the templated. * Some tweaks in FormattingForm rendering. * Selection of which sections to show is now table driven in views.py * Some minor refactoring and cleanup in views.py * Some more form subclassing in ipr/views.py in order to support form validation. * Removed style information from ipr/details.html template, and added ipr/style.html * Cleanup of details.html * Fixed ipr/formfield.html to display error messages, and with the right class. - Legacy-Id: 105
23 lines
736 B
Python
23 lines
736 B
Python
from django.conf.urls.defaults import *
|
|
from ietf.ipr import models, views
|
|
|
|
urlpatterns = patterns('',
|
|
(r'^$', views.showlist),
|
|
(r'^about/?$', views.default),
|
|
(r'^ipr-(?P<ipr_id>\d+)/$', views.show),
|
|
(r'^update/$', views.updatelist),
|
|
(r'^update/(?P<ipr_id>\d+)/$', views.update),
|
|
(r'^new-(?P<type>(specific|generic|third_party))/$', views.new),
|
|
)
|
|
|
|
queryset = models.IprDetail.objects.all()
|
|
archive = {'queryset':queryset, 'date_field': 'submitted_date', 'allow_empty':True }
|
|
|
|
urlpatterns += patterns('django.views.generic.date_based',
|
|
(r'^by-date/$', 'archive_index', archive),
|
|
(r'^(?P<year>\d{4})/$', 'archive_year', archive),
|
|
(r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/$', 'archive_month', archive),
|
|
)
|
|
|
|
|