project/templates/registration/registrations.html
changeset 1 fda1c66b25f9
child 20 486cfc8dd611
equal deleted inserted replaced
0:9a77edda77b7 1:fda1c66b25f9
       
     1 {% extends "base.html" %}
       
     2 
       
     3 {% block title %}
       
     4 Registrations
       
     5 {% endblock %}
       
     6 
       
     7 {% block content %}
       
     8 
       
     9 <h1>Submit Registration</h1>
       
    10 
       
    11     {% if over_reg %}
       
    12     <div class="notice">
       
    13       We have already reached the total number of registrations for the
       
    14       conference.  If you would like to be put on a waiting list in the event
       
    15       that someone can't make it to the conference, please follow the link
       
    16       below to register and we will be in contact if a registration spot comes
       
    17       available.
       
    18     </div>
       
    19     {% endif %}
       
    20 
       
    21 <p>Currently <strong>{{ registrations }}</strong> persons have registered to attend Kiwi PyCon 2009.</p>
       
    22 
       
    23 <p>To attend Kiwi Pycon 2009 please <a href="/submit-registration/">register</a></p>
       
    24 
       
    25 <p>Registration payments:
       
    26 
       
    27 <pre class="plain">
       
    28 New Zealand Python User Group,
       
    29 06-0158-0360348-00
       
    30 The National Bank,
       
    31 Auckland University Branch
       
    32 PO Box 2132
       
    33 </pre>
       
    34 
       
    35 Please use your username and invoice number as references when making payments.
       
    36 
       
    37 {% endblock %}