Files @ 3ffa5fab60de
Branch filter:

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

James Polley
Don't require login to view qrcode

* The qrcode contains no information that isn't in the URL you used to
access the code, so information is being leaked
* Allowing unauthenicated access lets people see the image in their
mail client

Not ideal. Let's revert this later and think of something better next
year - perhaps spending some more time researching best practices on
images in email..
{% 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 %}