Я работал над приложением django, следуя инструкциям coreyMS. Теперь это на этапе развертывания. Я пытался развернуть приложение с помощью heroku. Приложение развернуто, и все шаблоны блоговых приложений в порядке. Но шаблоны пользовательских приложений не обрабатываются. Любая помощь будет оценена. Заранее спасибо!
Мой файл settings.py:
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, "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',
],
},
},
]```
Only the templates of blog are getting rendered.I am having two apps-blog and users.
in both the apps i have the templates in the following way:
app->templates->appname->.htmlfiles
One is getting rendered while the other is not..