template/regthank.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Fri, 02 Oct 2009 14:01:48 +0530
changeset 12 243a7e90f3c3
parent 5 7358eeae14d8
permissions -rwxr-xr-x
Added Template context processors and Session Expire time for auth module.

{% 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 %}