народ всем привет....помогите ошибку найти...у меня на страничке сайта не отображается файл из модели
{% for doc in Doc_energy_home %}
<p style="font-size: 20px; text-align: center;"><strong>{{
doc.name }}</strong></p>
<form method="get" action="{{ doc.file.url }}">
<button class="btn btn-outline-info " type="submit" style="margin-left: 35%;font-size: 30px;">Посмотреть</button>
</form>
{% endfor %}
это хтмл
def home(request):
data = {
'news': News.objects.all(),
'Doc_energy_home': Doc_energy_home.objects.all(),
'title': 'Главная сторінка сайту',
}
return render(request, 'blog/home.html', data)
это вью
в админке есть модель есть..файл через админку добавил
во вью импортировал модель