Найти шаблон в django

Мой код выглядит следующим образом.

{% if request.path != '/login/' %}
      {% include "/hospital/templates/header.html" %}   
{% endif %}

Я получаю ошибку

TemplateDoesNotExist по адресу /dashboard/

/hospital/templates/header.html

Как включить шаблон

It is not a full path, but relative to the DIRS [Django-doc] and templates/ directory in the apps, if you enable APP_DIRS [Django-doc], so likely:

{% include "header.html" %}
Вернуться на верх