summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorBruno Sarlo <bruno@bruno-laptop.(none)>2009-07-18 18:12:50 -0300
committerBruno Sarlo <bruno@bruno-laptop.(none)>2009-07-18 18:12:50 -0300
commit53d12b976ec737a93d9ae6f24172409cd0c305d5 (patch)
treea3198af8f0540bc81233b5ddcc2343dfe338a768 /templates
parent16b2b41fbc1a944028785f2bbd9af5549c214081 (diff)
downloadaskbot-53d12b976ec737a93d9ae6f24172409cd0c305d5.tar.gz
askbot-53d12b976ec737a93d9ae6f24172409cd0c305d5.tar.bz2
askbot-53d12b976ec737a93d9ae6f24172409cd0c305d5.zip
fixed logout bug when logout url translated.
Diffstat (limited to 'templates')
-rw-r--r--templates/logout.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/logout.html b/templates/logout.html
index b13e5e25..6270924a 100644
--- a/templates/logout.html
+++ b/templates/logout.html
@@ -7,7 +7,7 @@
{% 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>