Загрузка данных


{%extends 'main/base.html'%}

{%block title%}
Главная страница
{%endblock%}

{%block content%}
   <div class="films_block">

   {% for el in table %}
       <div class="film" style="--clr:black">
            <h2>{{el.title}}</h2>
            <p> {{el.text}}</p>
       </div>
   {% endfor %}
   </div>

{%endblock%}