Files @ fc842b7c308b
Branch filter:

Location: CopyleftConf/copyleftconf-website/pinaxcon/templates/registrasion/profile_form.html

Christopher Neugebauer
Wording on discounts on the form pages shows the reason for the discount.

Fixes #6.
{% extends "registrasion/base.html" %}
{% load bootstrap %}

{% block body %}

  <h1>Your profile</h1>

  <p>These details will appear on your badge, your invoices, and will be used
  to order catered food at the conference.</p>

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

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

    <div class="form-actions">
        <input class="btn btn-primary" type="submit" value="Save" />
    </div>
  </form>


{% endblock %}