Edit Django admin logout template?
问题 I want to make a very small change to the Django admin logout page. I know how to use templates to override the Django admin templates, so I have tried to do the same thing with the logout file. I have set up a new template at templates/registration/logged_out.html . The content of this file is as follows: {% extends "registration/logged_out.html" %} {% block content %} <p>Thanks for using the site.</p> <p><a href="../">Log in again</a></p> <p><a href="/">Return to the home page</a></p> {%