forked from 0x2620/pandora
15 lines
304 B
Python
15 lines
304 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# vi:si:et:sw=4:sts=4:ts=4
|
||
|
|
||
|
from django.conf.urls.defaults import *
|
||
|
|
||
|
|
||
|
urlpatterns = patterns("oxdb.user_management.views",
|
||
|
(r'^preferences', 'preferences'),
|
||
|
(r'^login', 'login'),
|
||
|
(r'^logout', 'logout'),
|
||
|
(r'^register', 'register'),
|
||
|
(r'^recover', 'recover'),
|
||
|
)
|
||
|
|