TemplateDoesNotExist at /readers/ readers.html

im facing this problem anyone knows how can I solve it?

readers.html

{% extends “index.html” %}

{% block main_content %}

Readers Page

Welcome to the Readers page!

{% endblock %}

settings.py
ROOT_URLCONF = ‘lims_portal.urls’

TEMPLATES = [
{
‘BACKEND’: ‘django.template.backends.django.DjangoTemplates’,
‘DIRS’: [os.path.abspath(os.path.dirname(file) + “/…/lims_app/templates”)],
‘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’,
],
},
},
]

Read the errors.

In the “Template-loader postmortem” section it tells you where it tries to find the readers.html template but couldn’t find it. These locations are based on your settings. So your template should be in one of those locations, or you should change your settings.

BTW, if you put three backticks ``` on a separate line before and after code, then it will be correctly formatted here and other people will be able to read it.

will help you to understand better these kind of errors.

Actually its very helpful for beginners like me.