Files @ d4b0b52253ae
Branch filter:

Location: symposion_app/pinaxcon/templates/registrasion/badge_form.html

Joel Addison
Registrasion updates

Show applied vouchers on attendee registration admin page.
Add head title and page title to more areas.
Update the dashboard to show warning for empty categories and have
button to open voucher page.
Fix exception on attendee page when user does not have attendee object.
{% extends "registrasion/base.html" %}
{% load bootstrap %}

{% block content %}
  <h1>Create Badge</h1>

  <p>Enter a username to autofill this form, or fill in the rest of the fields by hand.</p>

  <form method="post" action="/tickets/badger/">
    {% csrf_token %}

    <table>
        {{ form|bootstrap }}
    </table>

    <div class="form-actions">
        <input class="btn btn-primary" type="submit" value="Create Badge" />
    </div>
  </form>
{% endblock %}