# HG changeset patch # User Pawel Solyga # Date 1226849200 0 # Node ID 2865922ea06ac7fb727b8dce9a32df9cb9859f45 # Parent 6364f8b0656b43395ab8a60331c61d7944e7dc5d Change id to account in base.html template (without this change we couldn't signout using top right links and also couldn't display currently logged in account information on the left side of links). This patch is related to commit in revision r1022. http://code.google.com/p/soc/source/detail?r=1022 Patch by: Pawel Solyga diff -r 6364f8b0656b -r 2865922ea06a app/soc/templates/soc/base.html --- a/app/soc/templates/soc/base.html Sun Nov 16 12:48:23 2008 +0000 +++ b/app/soc/templates/soc/base.html Sun Nov 16 15:26:40 2008 +0000 @@ -38,14 +38,14 @@
{% block login_links %} - {% if id %} - {{ id.email }} ({{ id.nickname }}) | + {% if account %} + {{ account.email }} ({{ account.nickname }}) | {% endif %} {% if is_debug %} Admin | {% endif %} Report bugs | - {% if id %} + {% if account %} Sign out {% else %} Sign in