Browse Source

Issues (TODO) moved to issuetracker

master
Dirk Alders 3 weeks ago
parent
commit
6b55e81816
3 changed files with 1 additions and 7 deletions
  1. 1
    1
      README.md
  2. 0
    3
      parameter.py
  3. 0
    3
      views.py

+ 1
- 1
README.md View File

34
 
34
 
35
 ## Usage
35
 ## Usage
36
 ### Actionabr
36
 ### Actionabr
37
-You might want to add the user actions by calling ```users.context.menubar(bar, request)``` with ```bar``` as actionbar. See theme dosumentation for more details.
37
+You might want to add the user actions by calling ```users.context.menubar(bar, request)``` with ```bar``` as menubar. See theme dosumentation for more details.

+ 0
- 3
parameter.py View File

2
 from django.conf import settings
2
 from django.conf import settings
3
 
3
 
4
 USERS_SELF_REGISTRATION = "USERS_SELF_REGISTRATION"
4
 USERS_SELF_REGISTRATION = "USERS_SELF_REGISTRATION"
5
-# TODO: Implement or find the mail validation and the methods to ask for the user status
6
 # USERS_MAIL_VALIDATION = "USERS_MAIL_VALIDATION"
5
 # USERS_MAIL_VALIDATION = "USERS_MAIL_VALIDATION"
7
-# TODO: Implement or mail information (Admins: New Useraccounts, Failed logins; User: Password Change, ...)
8
 # USERS_MAIL_INFORMATION = "USERS_MAIL_INFORMATION"
6
 # USERS_MAIL_INFORMATION = "USERS_MAIL_INFORMATION"
9
 
7
 
10
 
8
 
11
 DEFAULTS = {
9
 DEFAULTS = {
12
-    # TODO: Implement the parameer functionality USERS_SELF_REGISTRATION
13
     USERS_SELF_REGISTRATION: False,
10
     USERS_SELF_REGISTRATION: False,
14
     # USERS_MAIL_VALIDATION: True,
11
     # USERS_MAIL_VALIDATION: True,
15
     # USERS_MAIL_INFORMATION: True,
12
     # USERS_MAIL_INFORMATION: True,

+ 0
- 3
views.py View File

15
 import users
15
 import users
16
 from users import parameter
16
 from users import parameter
17
 
17
 
18
-# TODO: Implement password change.
19
-
20
 try:
18
 try:
21
     from config import APP_NAME as ROOT_LOGGER_NAME
19
     from config import APP_NAME as ROOT_LOGGER_NAME
22
 except ImportError:
20
 except ImportError:
25
 
23
 
26
 
24
 
27
 def password_recovery(request):
25
 def password_recovery(request):
28
-    # TODO: Implement password recovery
29
     messages.error(request, "Password recovery is not yet implemented!")
26
     messages.error(request, "Password recovery is not yet implemented!")
30
     return redirect(request.GET.get('next') or '/')
27
     return redirect(request.GET.get('next') or '/')
31
 
28
 

Loading…
Cancel
Save