2011-09-12 06:36:16 +08:00
|
|
|
from django.conf.urls import patterns, url
|
2011-06-16 01:29:10 +08:00
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from django.views.generic import TemplateView
|
|
|
|
|
|
|
|
|
|
|
|
view = TemplateView.as_view(template_name='dummy.html')
|
|
|
|
|
|
|
|
urlpatterns = patterns('',
|
|
|
|
url(_(r'^register/$'), view, name='register'),
|
2012-03-02 19:07:36 +08:00
|
|
|
url(_(r'^register-without-slash$'), view, name='register-without-slash'),
|
2011-06-16 01:29:10 +08:00
|
|
|
)
|