cablegates/pandora/user/urls.py

14 lines
258 B
Python
Raw Normal View History

2010-01-25 14:50:21 +05:30
# -*- coding: utf-8 -*-
# vi:si:et:sw=4:sts=4:ts=4
from django.conf.urls.defaults import *
2010-10-16 13:58:57 +02:00
urlpatterns = patterns("user.views",
(r'^preferences', 'preferences'),
(r'^login', 'login'),
(r'^logout', 'logout'),
(r'^register', 'register'),
2010-01-25 14:50:21 +05:30
)