The nonwg_lists/submit wizard is nearly done; it needs templates and to figure out why submit from step 2 goes back to step 1 instead of calling done. The req_list wizard is just started. It needs to get the incoming value of domain_name as an alternat version of dname, and be able to get dname from GET args to handle the javascript redirect. It also needs all the workflow ("I'm allowed to create this list", who-is-approver, etc.) and additional forms. - Legacy-Id: 122
16 lines
744 B
Python
16 lines
744 B
Python
from django.conf.urls.defaults import *
|
|
from ietf.idtracker.models import Areas
|
|
from ietf.mailinglists import views
|
|
from ietf.mailinglists.models import NonWgMailingList
|
|
from ietf.mailinglists.forms import NonWgStep1
|
|
|
|
urlpatterns = patterns('django.views.generic.list_detail',
|
|
(r'^area_lists/$', 'object_list', { 'queryset': Areas.objects.filter(status=1).select_related().order_by('acronym.acronym'), 'template_name': 'mailinglists/areas_list.html' }),
|
|
(r'^nonwg_lists/$', 'object_list', { 'queryset': NonWgMailingList.objects.filter(status__gt=0) }),
|
|
)
|
|
urlpatterns += patterns('',
|
|
(r'^nonwg_lists/submit/$', views.non_wg_wizard),
|
|
(r'^request/$', views.list_req_wizard),
|
|
(r'^nonwg_lists/s2/$', views.non_wg_submit),
|
|
)
|