{% extends 'shop_base.html' %} {% load bootstrap3 %} {% load shop_tags %} {% block shop_content %}

Tickets

{% for ticket in tickets %}
Ticket owner Product name Price
{% if ticket.name %} {{ ticket.name }} {% else %} Click here to set the owner of this ticket {% endif %} {{ ticket.product.name }} {{ ticket.product.price|currency }} {% endfor %}
{% endblock %}