Не пойму почему в {% for el in news %} не работает HTML код?
Сам код:
{% for el in news %}
<p>{{ el.title }}</p>
{% endfor %}
Или вот это:
{% for el in news %}
<div class="card-body">
<p class="card-text">{{ el.anons }}</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<button type="button" class="btn btn-sm btn-outline-secondary">Дополнительно</button>
<button type="button" class="btn btn-sm btn-outline-secondary">Скачать</button>
</div>
<small class="text-muted">{{ el.date }}</small>
</div>
</div>
</div>
</div>
{% endfor %}
Внутри данного кода на сайт информация не выводится вообще