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

Raffle Items

All Items My Favorites
{% for item in items %}
{% if item.picture %} {{ item.title }} {% else %}
No Image
{% endif %}
#{{ item.item_number }}

{{ item.title }}

{{ item.description|linebreaksbr }}

{% if user.is_auctioneer %} View Edit {% endif %}
{% empty %}

No items found.

{% endfor %}
{% endblock %}