project/templates/registration/registrations.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Tue, 10 Nov 2009 12:28:24 +0530
changeset 20 486cfc8dd611
parent 1 fda1c66b25f9
child 141 3a325a865252
permissions -rw-r--r--
Added registration confirmation page.

{% extends "base.html" %}

{% block title %}
Registrations
{% endblock %}

{% block content %}

<h1>Submit Registration</h1>

    {% if over_reg %}
    <div class="notice">
      We have already reached the total number of registrations for the
      conference.  If you would like to be put on a waiting list in the event
      that someone can't make it to the conference, please follow the link
      below to register and we will be in contact if a registration spot comes
      available.
    </div>
    {% endif %}

<p>Currently <strong>{{ registrations }}</strong> persons have registered to attend SciPy.in 2009.</p>

<p>To attend SciPy.in 2009 please <a href="/submit-registration/">register</a></p>


{% endblock %}