如何覆盖我的模板而不是Django管理面板来重置密码?

时间:2018-08-15 13:45:45

标签: python django python-3.x django-templates django-views

我正在关注此博客以重置Django中的用户密码。运行良好。但是问题是我想在重置密码或确认邮件时显示模板而不是Django管理面板。我该如何实现?

这是我的urls.py文件

url(r'^password_reset/$', password_reset , name='password_reset_reset1'),
url(r'^password_reset/done/$', password_reset_done, name='password_reset_done'),
url(r'^reset/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})/$',
    password_reset_confirm, name='password_reset_confirm'),
url(r'^reset/done/$', password_reset_complete, name='password_reset_complete'),

我需要为模板和视图采取什么步骤>我尝试了很多并添加了一些文件,例如:

registration/password_reset_form.html
registration/password_reset_subject.txt
registration/password_reset_email.html 
registration/password_reset_done.html
registration/password_reset_confirm.html 
registration/password_reset_complete.html

但是没有效果>我只想在重置密码时呈现我的网站模板。

这是我的目录结构:

├── backmyitem
│   ├── __init__.py
│   ├── settings.py
│   ├── urls.py
│   └── wsgi.py
├── feed
│   ├── admin.py
│   ├── apps.py
│   ├── forms.py
│   ├── __init__.py
│   ├── migrations
│   │   ├── 0001_initial.py
│   │   ├── 0002_auto_20180804_1610.py
│   │   ├── 0003_auto_20180805_0533.py
│   │   ├── 0004_claimform.py
│   │   ├── 0005_auto_20180807_1403.py
│   │   ├── 0006_auto_20180807_1840.py
│   │   ├── 0007_auto_20180809_0045.py
│   │   ├── 0008_auto_20180809_0126.py
│   │   ├── 0009_auto_20180809_0140.py
│   │   ├── 0010_report_item_owner.py
│   │   ├── 0011_usernotification.py
│   │   ├── 0012_auto_20180813_0051.py
│   │   ├── 0013_auto_20180815_0159.py
│   │   ├── __init__.py
│   ├── models.py
│   ├── templates
│   │   ├── feed
│   │   │   ├── base.html
│   │   │   ├── claimform_form.html
│   │   │   ├── detail.html
│   │   │   ├── footer.html
│   │   │   ├── form_template.html
│   │   │   ├── header.html
│   │   │   ├── index.html
│   │   │   ├── loggedin.html
│   │   │   ├── login_user.html
│   │   │   ├── notification.html
│   │   │   ├── profile.html
│   │   │   ├── report_item_confirm_delete.html
│   │   │   ├── report_item_form.html
│   │   │   ├── SignUp.html
│   │   │   └── usernotification_form.html
│   │   ├── notification
│   │   └── registration
│   │       ├── form_login_template.html
│   │       └── login.html
│   ├── tests.py
│   ├── urls.py
│   └── views.py
├── manage.py
└── myammaji

谢谢!

9 个答案:

答案 0 :(得分:5)

您还可以确保您的应用位于INTALLED_APPS中的所有其他Django应用之前 例如

INSTALLED_APPS = [
'your_app_name',

'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.sites',
'django.contrib.staticfiles',
]

用您的应用名称替换您的应用名称

答案 1 :(得分:1)

在您的settings.py中,确保您的TEMPLATES设置等于以下内容

TEMPLATES = [
{
    'BACKEND': 'django.template.backends.django.DjangoTemplates',
    'DIRS': [os.path.join(BASE_DIR, 'templates')],
    'APP_DIRS': True,
    'OPTIONS': {
        'context_processors': [
            'django.template.context_processors.debug',
            'django.template.context_processors.request',
            'django.contrib.auth.context_processors.auth',
            'django.contrib.messages.context_processors.messages',

        ],
    },
},]

这里最重要的部分是 DIRS

答案 2 :(得分:1)

转到Django管理员注册目录

/home/username/Desktop/Project_folder/virtual_env_name/lib/python3.6/site-packages/django/contrib/admin/templates

现在打开password_reset_form.html并替换

{% extends "admin/base_site.html" %}

您要扩展的模板。就我而言,请执行以下

{% extends "feed/base.html" %}

提要:应用名称 base.html:基本文件

答案 3 :(得分:1)

我为此奋斗了几个小时。我尝试重写我认为反对的管理模板,因此不必为每个新项目都重写它。

最终在一个引用Django 2.1文档“ http://discuss.hellowebapp.com/t/django-2-1-changes/618/4”的博客上偶然发现了答案。 该博客介绍了路径格式的更改和视图语法。

文件结构

###`blog/templates/registration/reset_password_form.html`###
###`blog/templates/registration/reset_password_done.html`###
###`blog/templates/registration/reset_password_complete.html`###
###`blog/templates/registration/reset_password_confirm.html`###
C:.                                                                   
├───blog                                   
│   │   admin.py                           
│   │   apps.py                            
│   │   forms.py                           
│   │   models.py                          
│   │   tests.py                           
│   │   urls.py                            
│   │   views.py                           
│   │   __init__.py                        
│   │                                      
│   ├───migrations                         
│   │                                      
│   ├───static                             
│   │   └───css                            
│   │       │   blog.css                   
│   │       │                              
│   │       └───static                     
│   │           └───images                 
│   │                                      
│   ├───templates                          <-------
│   │   │   add_comment_to_post.html       
│   │   │                                  
│   │   ├───blog                           
│   │   │       base.html                  
│   │   │       postDraftlist.html         
│   │   │       postEdit.html              
│   │   │       postsDetail.html           
│   │   │       postsList.html             
│   │   │                                  
│   │   └───registration                   <-------
│   │           home.html                  
│   │           login.html                 
│   │           password_reset_complete.htm    <---
│   │           password_reset_confirm.html    <---
│   │           password_reset_done.html       <---
│   │           password_reset_form.html       <---
│   │                                      
│   └───__pycache__                        
├───blogApp                                
│   │   settings.py                        
│   │   urls.py                            
│   │   wsgi.py                            
│   │   __init__.py                        
│   │                                      
│   └───__pycache__                            
│                                          
└───sent_emails                            
|          
│___.gitignore                             
│___db.sqlite3                             
│___manage.py                              
│              

from django.contrib import admin
from django.urls import path, include
from django.views.generic.base import TemplateView
from django.contrib.auth.views import PasswordResetView, PasswordResetDoneView, PasswordResetConfirmView, PasswordResetCompleteView

urlpatterns = [
    path('admin/', admin.site.urls),
    #127.0.0.1:8000
    path('', include('blog.urls')),
    path('accounts/', include('django.contrib.auth.urls')),
    path('', TemplateView.as_view(template_name='home.html'), name='home'),
    path('accounts/password/reset/', PasswordResetView.as_view(template_name='registration/password_reset_form.html'), name='password_reset'),
    path('accounts/password/reset/', PasswordResetDoneView.as_view(template_name='registration/password_reset_done.html'), name='password_reset_done'),
    path('accounts/password/reset/', PasswordResetConfirmView.as_view(template_name='registration/password_reset_confirm.html'), name='password_reset_confirm'),
    path('accounts/password/reset/', PasswordResetCompleteView.as_view(template_name='registration/password_reset_comlete.html'), name='password_reset_complete'),

设置

INSTALLED_APPS =  [
    'blog',   #<--name of your app should go here at the top of this stack not bottom
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
]
TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [os.path.join(BASE_DIR, 'templates')],

所以:

  
      
  1. 文件结构:templates/registration/password_reset_form.html
  2.   
  3. urls.py:导入和路径
  4.   
  5. settings.py:INSTALLED_APPS和DIRS
  6.   

答案 4 :(得分:1)

尝试了该线程中列出的所有尝试之后,我仍然无法使它工作。但是,通过将我的帐户应用程序中的自定义网址替换为它在电子邮件中显示的确切链接;我设法解决了这个问题。

#My original urls link:
'users/password_reset/<uidb64>/<token>/' 

#working link
'users/reset/<uidb64>/<token>/'

答案 5 :(得分:0)

在django 2中将自定义密码重置模板与path()一起使用

基于@samschultz response

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': ['path/to/yor/templates/'], # Example: 'templates' or /myapp/templates'...
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
            ],
        },
    },
]

请注意>>> “ DIRS” <<<。

希望有帮助。

答案 6 :(得分:0)

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': ['accounts/templates/'],
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
            ],
        },
    },
]

记下“ DIRS”中的目录路径:[] ...默认情况下,它为空。放入'accounts/templates/'。帐户也是应用程序的名称,我假设您使用过accounts

答案 7 :(得分:0)

模板的路径应正确,否则将不起作用。下面对我有用。

“ DIRS”:[os.path.join(BASE_DIR,“项目/模板/项目”)],

模板= [

{
    'BACKEND': 'django.template.backends.django.DjangoTemplates',
    'DIRS': [os.path.join(BASE_DIR, 'projects/templates/projects')],
    'APP_DIRS': True,
    'OPTIONS': {
        'context_processors': [
            'django.template.context_processors.debug',
            'django.template.context_processors.request',
            'django.contrib.auth.context_processors.auth',
            'django.contrib.messages.context_processors.messages',
        ],
    },
},

]

答案 8 :(得分:0)

要覆盖密码重置的管理模板,需要遵循文件夹结构并记住将自定义模板放在 templates/registration 目录中。

├───blog                                   
│   │   admin.py                           
│   │   apps.py                            
│   │   forms.py                           
│   │   models.py                          
│   │   tests.py                           
│   │   urls.py                            
│   │   views.py                           
│   │   __init__.py                        
│   │                                      
│   ├───migrations                         
│   │                                      
│   ├───static                             
│   │   └───...                
│   │                                      
│   ├───templates                          
│   │   │   ...      
│   │   │                                  
│   │   ├───blog                           
│   │   │     ...              
│   │   │                                  
│   │   └───registration                   <-------
│   │           home.html                  
│   │           login.html      
|   |           password_reset_form.html      <------
|   |           password_reset_email.html     <------         
│   │           password_reset_done.html      <------
│   │           password_reset_confirm.html   <------
│   │           password_reset_complete.html  <------

并确保将模板命名为,

password_reset_form.html
password_reset_email.html
password_reset_done.html
password_reset_confirm.html
password_reset_complete.html

urls.py 路径应该如下所示,

from django.contrib.auth import views as auth_views
# and other imports ....

path(
        'password_reset',
        auth_views.PasswordResetView.as_view(template_name='registration/password_reset_form.html'),
        name='password_reset'
    ), 
...