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


{%extends "base.html"%}
{%load static%}

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

{%block content%}
  <div class="films_block">
    {% for el in table %}
        <div class="film">
            <h2>{{el.title}}</h2>
            <p>{{el.text}}</p>
        </div>
    {% endfor %}
  </div>

{%endblock%}