{% 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']}}
{% if present['items'] %}
{% for x in present['items'] %} Item id: {{x['item_id']}}
Item type: {{x['type']}}
Amount: {{x['amount']}}
{% if not loop.last %}
{% endif %} {% endfor %} {% endif %}
{% if not loop.last %}


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