How to use a custom Jazzmin template

I’m trying to customize a Jazzmin logout template, but when I tell Django to use my template, it doesn’t work.
Template path: .venv\Lib\site-packages\jazzmin\templates\registration\logged_out.html
I placed my template in: bug_tracking/bug_tracking/templates/registration
How can I do it correctly?

Templates are searched by order of apps listed in the INSTALLED_APPS setting. Make sure that your bug_tracking app is listed before jazzmin. Also make sure you have APP_DIRS set as True in your TEMPLATES setting.

1 Like

It worked, thank you very much!