Jan Dittberner
fd6449dff1
- implement userdbs.forms.ChangeDatabaseUserPasswordForm - implement userdbs.views.ChangeDatabaseUserPassword - add URL pattern 'change_dbuser_password' to userdbs.urls - add template userdbs/databaseuser_setpassword.html - link from hostingpackage detail template to 'change_dbuser_password' - add changelog entry
20 lines
522 B
Python
20 lines
522 B
Python
"""
|
|
This module defines the URL patterns for user database views.
|
|
|
|
"""
|
|
from __future__ import absolute_import, unicode_literals
|
|
|
|
from django.conf.urls import patterns, url
|
|
|
|
from .views import (
|
|
AddUserDatabase,
|
|
ChangeDatabaseUserPassword,
|
|
)
|
|
|
|
urlpatterns = patterns(
|
|
'',
|
|
url(r'^(?P<package>\d+)/create$',
|
|
AddUserDatabase.as_view(), name='add_userdatabase'),
|
|
url(r'^(?P<package>\d+)/(?P<slug>[\w0-9]+)/setpassword',
|
|
ChangeDatabaseUserPassword.as_view(), name='change_dbuser_password'),
|
|
)
|