{% extends "base.html" %} {% block title %}{{ _('Shop') }}{% endblock %} {% block content %}

{{ _('Shop') }}

{{ _('Deine Reward-Punkte:') }} {{ current_user.reward_points() }}

{% if message %}
{{ message }}
{% endif %}
{% for item in items %}
{{ item.name }}

{{ item.description }}

{{ item.price }} {{ _('Points') }}

{% if item.id in owned_ids %} {% else %}
{% endif %}
{% endfor %}
{% endblock %}