Template Loader finds the template but template is not loaded
TemplateDoesNotExist at /cardpayment/
cardpayment.html
Request Method: G
I had the same problem and it was solved after changing the order of the apps in INSTALLED_APPS in the settings.py file.
Put your app's name first on the list:
INSTALLED_APPS = [
'module_name',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
]