Files @ 2d5cd622c517
Branch filter:

Location: symposion_app/registrasion/templates/profile_form.html

Christopher Neugebauer
Makes it invalid for a user to re-enter a voucher code they already have.
<!--- Sample template. Move elsewhere once it's ready to go. -->

{% extends "site_base.html" %}
{% block body %}

  <h1>Attendee Profile</h1>

  <p>Something something fill in your attendee details here!</p>

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

    <table>
        {{ form }}
    </table>

    <input type="submit">

  </form>


{% endblock %}