Added the option to limit the tags creation. It will defaults to false, and there...
[osqa.git] / forum_modules / localauth / urls.py
1 from django.conf.urls.defaults import *
2 from django.views.generic.simple import direct_to_template
3 from django.utils.translation import ugettext as _
4 import views as app
5
6 urlpatterns = patterns('',
7     url(r'^%s%s%s$' % (_('account/'), _('local/'),  _('register/')), app.register, name='auth_local_register'),
8 )