Files @ 62d5c5b2bf33
Branch filter:

Location: symposion_app/registrasion/templates/profile_form.html

Christopher Neugebauer
Revert "Registrasion URLs now include django-nested-admin"

This reverts commit 58eed33c429c1035801e840b41aa7104c02b9b5a.
<!--- 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 %}