Files @ 539fa2dfdd2b
Branch filter:

Location: symposion_app/pinaxcon/templates/raffle.html

Joel Addison
Finalise registration

Add shirt types and sizes. Improve messaging about discounts.
Restyle ticket wizard and product category screens. Enable page titles
and messages. Update dashboard to hide raffle.
Enable inventory population for dev container.
{% extends "registrasion/base.html" %}
{% load registrasion_tags %}
{% load lca2018_tags %}
{% load staticfiles %}

{% block header_title %}{% conference_name %}{% endblock %}

{% block proposals_body %}
<h1 class="mb-5">Raffle Tickets</h1>

<p>You can buy more raffle tickets from the <a href="/dashboard">dashboard</a>.</p>

{% for raffle in raffles %}
{% if raffle.tickets %}
  <h2 class="mt-5">{{ raffle }}</h2>
   {% for id, numbers in raffle.tickets %}
    <h4 class="mt-3"><strong>Ticket {{ id }}</strong></h4>
    <p>{% for number in numbers %}{{ number }}{% if not forloop.last %}, {% endif %}{% endfor %}</p>
  {% endfor %}
{% endif %}
{% endfor %}
{% endblock %}