首页 > 解决方案 > 如何更改文本“感谢您今天在网站上度过了美好的时光”。在姜戈?

问题描述

当您注销 Django 管理员时,它会显示一个字符串“感谢您今天在网站上度过了美好的时光”。

我可以把它改成别的吗?

我能够更改其他属性,例如

admin.site.site_header = "Whatever"
admin.site.site_title = "Whatever"
admin.site.index_title = "Whatever"

在 urls.py 文件中效果很好,所以我猜这可以类似地改变。

谢谢你的帮助。尝试谷歌,没有骰子。

标签: djangodjango-admin

解决方案


You can change the text by using the following steps:-

Step:-1 In your settings.py file in the 'TEMPLATES' section, give path of your templates directory created by you for overridding the logged_out.html template file.

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [BASE_DIR / 'templates'],  // path of your templates folder
        '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',
            ],
        },
    },
]


Step:-2 create a directory 'registration' in your templates folder.

Step:-3 Now create 'logged_out.html' file in registration folder.

Step:-4 Change the content according to you requirement

logged_out.html

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

{% block breadcrumbs %}<div class="breadcrumbs"><a href="{% url 'admin:index' %}">{% translate 'Home' %}</a></div>{% endblock %}

{% block nav-sidebar %}{% endblock %}

{% block content %}

<p>{% translate "Thanks for spending some quality time with the Web site today." %}</p>

<p><a href="{% url 'admin:index' %}">{% translate 'Log in again' %}</a></p>

{% endblock %}

推荐阅读