如何更改 Django 中的文本 "Thanks for spending some quality time with the Web site today."?

How do I change the text "Thanks for spending some quality time with the Web site today." in Django?

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

我可以将其更改为其他内容吗?

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

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

在 urls.py 文件中效果很好,所以我猜这可以进行类似的更改。

感谢您的帮助。试过Google,没有骰子

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 %}