Files @ 3562772c13cc
Branch filter:

Location: symposion_app/registrasion/templates/profile_form.html

Christopher Neugebauer
Adds RadioBoxProductsForm
<!--- 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 %}