2020-01-23 04:52:28 +00:00
|
|
|
{% extends "site_base.html" %}
|
2019-01-02 01:44:57 +00:00
|
|
|
{% load registrasion_tags %}
|
|
|
|
{% load lca2018_tags %}
|
2020-11-22 12:21:54 +00:00
|
|
|
{% load static %}
|
2019-01-02 01:44:57 +00:00
|
|
|
|
2020-01-23 04:52:28 +00:00
|
|
|
{% block head_title %}Raffle Tickets{% endblock %}
|
|
|
|
{% block page_title %}Raffle Tickets{% endblock %}
|
2019-01-02 01:44:57 +00:00
|
|
|
|
2020-01-23 04:52:28 +00:00
|
|
|
{% block content %}
|
|
|
|
<p>
|
|
|
|
All of the raffles you are entered into and the tickets you have for each of them.
|
|
|
|
If available, you will be able to purchase additional raffle tickets from the <a href="{% url "dashboard" %}">Dashboard</a>.
|
|
|
|
</p>
|
2019-01-21 02:55:28 +00:00
|
|
|
|
2020-01-23 04:52:28 +00:00
|
|
|
<h2>Your Raffle Tickets</h2>
|
2019-01-02 01:44:57 +00:00
|
|
|
{% for raffle in raffles %}
|
|
|
|
{% if raffle.tickets %}
|
2020-01-23 04:52:28 +00:00
|
|
|
<h3 class="mt-3">{{ raffle }}</h3>
|
|
|
|
<ul>
|
2019-01-02 01:44:57 +00:00
|
|
|
{% for id, numbers in raffle.tickets %}
|
2020-01-23 04:52:28 +00:00
|
|
|
<li>
|
|
|
|
<strong>Ticket {{ id }}</strong>
|
|
|
|
<p>{% for number in numbers %}{{ number }}{% if not forloop.last %}, {% endif %}{% endfor %}</p>
|
|
|
|
</li>
|
2019-01-02 01:44:57 +00:00
|
|
|
{% endfor %}
|
2020-01-23 04:52:28 +00:00
|
|
|
</ul>
|
2019-01-02 01:44:57 +00:00
|
|
|
{% endif %}
|
2020-01-23 04:52:28 +00:00
|
|
|
{% empty %}
|
|
|
|
<p>You do not have tickets in any raffles.</p>
|
2019-01-02 01:44:57 +00:00
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|