template/regthank.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Fri, 25 Sep 2009 23:54:25 +0530
changeset 8 f0b5ff862c6d
parent 5 7358eeae14d8
permissions -rwxr-xr-x
Added django-registration and its settings.

{% extends "index.html" %}
{% load i18n %}
{% block centercontent %}
    <h2>{% trans "Thank you for registering" %}</h2>

    {% if p %}
        <p>{% trans "Dear" %} {{ p.username }}, 
We will keep you posted regarding the latest activity.</p>
    {% else %}
        <p>{% trans "something went wrong" %}</p>
    {% endif %}
{% endblock %}