diff options
author | Mike Chen <chagel@gmail.com> | 2009-07-29 00:00:52 +0800 |
---|---|---|
committer | Mike Chen <chagel@gmail.com> | 2009-07-29 00:00:52 +0800 |
commit | 068bb7dc78d0b3565c100b61acc859ede0adc0d4 (patch) | |
tree | 0ec7772b1fa7c1a88bd60c585cc0c8a7adbccc1a /templates/logout.html | |
parent | 002317dcd125d66eea5ea98ce7beb9389615b10d (diff) | |
download | askbot-068bb7dc78d0b3565c100b61acc859ede0adc0d4.tar.gz askbot-068bb7dc78d0b3565c100b61acc859ede0adc0d4.tar.bz2 askbot-068bb7dc78d0b3565c100b61acc859ede0adc0d4.zip |
merge Evgeny's English and Botum's Spanish translations
Diffstat (limited to 'templates/logout.html')
-rw-r--r-- | templates/logout.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/logout.html b/templates/logout.html index 48a2deaf..6270924a 100644 --- a/templates/logout.html +++ b/templates/logout.html @@ -1,3 +1,4 @@ +<!-- template logout.html --> {% extends "base_content.html" %} {% load extra_tags %} {% load humanize %} @@ -6,20 +7,19 @@ {% block forejs %} <script type="text/javascript"> $().ready(function(){ - $('#btLogout').bind('click', function(){ window.location.href='/account/signout/?next={{ next }}'; }); + $('#btLogout').bind('click', function(){ window.location.href='{% url user_signout %}?next={{ next }}'; }); }); </script> {% endblock %} {% block content %} <div class="headNormal"> - {% trans "Logout" %} + {% trans "Logout" %} </div> <div id="main-body" style="width:100%"> - <input id="btLogout" type="button" class="submit" value="OK" style="width:150px"> + <p>{% trans "As a registered user you can login with your OpenID, log out of the site or permanently remove your account." %}</p> + <input id="btLogout" type="button" class="submit" value="{% trans "Logout now" %}"><!-- style="width:150px">--> <br><br> </div> {% endblock %} - - - +<!-- ent template logout.html --> |