{% extends 'base.html' %} {% block header %}

{% block title %}All presents{% endblock %}

{% endblock %} {% block content %} {% if posts %}
{% for present in posts %}
Id: {{present['present_id']}}
Expire time: {{present['expire_ts']}}
Description: {{present['description']}}
Items: {{present['items']}}
{% if not loop.last %}


{% endif %} {% endfor %} {% endif %} {% endblock %}