瀏覽代碼

Issues (TODO) moved to issuetracker

master
Dirk Alders 3 週之前
父節點
當前提交
6b55e81816
共有 3 個文件被更改,包括 1 次插入7 次删除
  1. 1
    1
      README.md
  2. 0
    3
      parameter.py
  3. 0
    3
      views.py

+ 1
- 1
README.md 查看文件

@@ -34,4 +34,4 @@ This parameter can be ```True``` or ```False```. It enables or disables the self
34 34
 
35 35
 ## Usage
36 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 查看文件

@@ -2,14 +2,11 @@ import config
2 2
 from django.conf import settings
3 3
 
4 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 5
 # USERS_MAIL_VALIDATION = "USERS_MAIL_VALIDATION"
7
-# TODO: Implement or mail information (Admins: New Useraccounts, Failed logins; User: Password Change, ...)
8 6
 # USERS_MAIL_INFORMATION = "USERS_MAIL_INFORMATION"
9 7
 
10 8
 
11 9
 DEFAULTS = {
12
-    # TODO: Implement the parameer functionality USERS_SELF_REGISTRATION
13 10
     USERS_SELF_REGISTRATION: False,
14 11
     # USERS_MAIL_VALIDATION: True,
15 12
     # USERS_MAIL_INFORMATION: True,

+ 0
- 3
views.py 查看文件

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

Loading…
取消
儲存