first draft of a registration form + email
[myslice.git] / portal / urls.py
1 # -*- coding: utf-8 -*-
2 #
3 # portal/urls.py: URL mappings for the portal application
4 # This file is part of the Manifold project.
5 #
6 # Authors:
7 #   Jordan AugĂ© <jordan.auge@lip6.fr>
8 # Copyright 2013, UPMC Sorbonne UniversitĂ©s / LIP6
9 #
10 # This program is free software; you can redistribute it and/or modify it under
11 # the terms of the GNU General Public License as published by the Free Software
12 # Foundation; either version 3, or (at your option) any later version.
13
14 # This program is distributed in the hope that it will be useful, but WITHOUT
15 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16 # FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
17 # details.
18
19 # You should have received a copy of the GNU General Public License along with
20 # this program; see the file COPYING.  If not, write to the Free Software
21 # Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22
23 from django.conf.urls import patterns, include, url
24
25 # DEPRECATED #from django.forms.formsets import formset_factory
26 # DEPRECATED #from portal.forms import RegisterUserForm, RegisterUserStep2Form
27 # DEPRECATED #from portal.views import RegisterUserWizardView
28 from portal import views
29 from portal.views import UserRegisterView, UserValidateView
30
31 # DEPRECATED #named_register_forms = (
32 # DEPRECATED #    ("step1", RegisterUserForm),
33 # DEPRECATED #    ("step2", RegisterUserStep2Form)
34 # DEPRECATED #)
35 # DEPRECATED #
36 # DEPRECATED #register_wizard = RegisterUserWizardView.as_view(named_register_forms,
37 # DEPRECATED #    url_name="register_wizard_step")
38
39 urlpatterns = patterns('',
40     # User registration
41     url(r'^user/register/?$', UserRegisterView.as_view(), name='user_register'),
42     # User validation
43     url(r'^user/validate/?$', UserValidateView.as_view(), name='user_validate'),
44     # Slice request
45     #url(r'^slice/request/?$',  views.slice_request,  name='slice_request'),
46     # Slice confirmation
47     #url(r'^slice/validate/?$', views.slice_validate, name='slice_validate'),
48 )
49 # (r'^accounts/', include('registration.backends.default.urls')),
50
51
52 # DEPRECATED #    url(r'^$', views.index, name='index'),
53 # DEPRECATED #    url(r"^registerwizard/(?P<step>[-\w]+)/$", register_wizard,
54 # DEPRECATED #        name="register_wizard_step"),
55 # DEPRECATED #    url(r"^registerwizard/$", register_wizard, name="register_wizard")