diff options
Diffstat (limited to 'project/templates/registration/registrations.html')
-rw-r--r-- | project/templates/registration/registrations.html | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/project/templates/registration/registrations.html b/project/templates/registration/registrations.html index da8b38a..e15a4a1 100644 --- a/project/templates/registration/registrations.html +++ b/project/templates/registration/registrations.html @@ -6,7 +6,7 @@ Registrations {% block content %} -<h1>Submit Registration</h1> +<h1>Registration Statistics</h1> {% if over_reg %} <div class="notice"> @@ -18,9 +18,16 @@ Registrations </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> - +<p> + Currently <strong>{{ registrations }}</strong> people have registered + to attend {{ event.get_full_name }}. +</p> + +{% if not registration %} + <p> + To attend {{ event.get_full_name }} please <a href=" + {% url scipycon_submit_registration params.scope %}">register</a> + </p> +{% endif %} {% endblock %} |