I am trying to implement a registration and login system for my django app using django-registration, django-registration-defaults, and django-email-usernames.
I have an url with an optionnal argument: urlpatterns = patterns( \'my_app.views\', url(\'schedule/(?P<calendar_id>\\d+)/(?:month(?P<relative_month>[\\+,\\-]\\d)/)$\',
What am I doing wrong ? My URL : http://localhost:8000/login/ The DEBUG log from Django : Page not found (404)
in my urls.py I need to invoke a generic CreateView that requires a success_url parameter. The \"success\" URL contains an identifier that I need to pass to the reverse() URL search function. I get th
I am using the development version. I get the error below when I try to reverse lookup my feed\'s URL.
I have this page http://127.0.0.1:8000/user/tom-brandy/. There is a link on the page to http://127.0开发者_Python百科.0.1:8000/signup/.
I am trying to let the manager of a site I\'m developing send mail to the members and send get a confirmation page.
I am using Django 1.2.3-3+squeeze1 with Debian squeeze. I am trying to use the Django password change view in my application
I am trying to link the databrowse.admin widget of django that rests here : http://12开发者_开发知识库7.0.0.1:8000/admin/openmaps/open_layers/
I maintain a Django webapp for a client of mine. We built it out in Django and for computer users, it\'s great. We now want to cater to mobile device users.