mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-07 16:44:03 +01:00
Sync with v0.2.10, update python classifiers
This commit is contained in:
commit
ac0eb7d27b
@ -22,7 +22,8 @@ CLASSIFIERS = ['Development Status :: 4 - Beta',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
'Framework :: Django :: 2.0']
|
||||
'Framework :: Django :: 2.0',
|
||||
'Framework :: Django :: 2.1']
|
||||
KEYWORDS = []
|
||||
PACKAGES = ['demodesk']
|
||||
REQUIREMENTS = [
|
||||
|
@ -185,13 +185,14 @@ urlpatterns += [
|
||||
|
||||
urlpatterns += [
|
||||
url(r'^login/$',
|
||||
auth_views.login,
|
||||
{'template_name': 'helpdesk/registration/login.html'},
|
||||
auth_views.LoginView.as_view(
|
||||
template_name='helpdesk/registration/login.html'),
|
||||
name='login'),
|
||||
|
||||
url(r'^logout/$',
|
||||
auth_views.logout,
|
||||
{'template_name': 'helpdesk/registration/login.html', 'next_page': '../'},
|
||||
auth_views.LogoutView.as_view(
|
||||
template_name='helpdesk/registration/login.html',
|
||||
next_page='../'),
|
||||
name='logout'),
|
||||
]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user