From 5e3188726033f0b3d2b5a40d444b63dd55922311 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Mon, 28 Jul 2008 16:15:15 -0700 Subject: [PATCH] Moved "sign up for free" on demo page lower down beneath most of the link area. --- view/Link_area.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/view/Link_area.py b/view/Link_area.py index 7625582..21a9609 100644 --- a/view/Link_area.py +++ b/view/Link_area.py @@ -14,11 +14,6 @@ class Link_area( Div ): Div.__init__( self, Div( - (user.username is None ) and P( - A( u"Sign up for free", href = u"/pricing", class_ = u"hook_action" ), - class_ = u"hook_action_area", - separator = u"", - ) or None, Div( H4( u"this notebook", id = u"this_notebook_area_title" ), Div( @@ -168,6 +163,12 @@ class Link_area( Div ): id = u"notebooks_area" ), + ( user.username is None ) and P( + A( u"Sign up for free", href = u"/pricing", class_ = u"hook_action" ), + class_ = u"hook_action_area", + separator = u"", + ) or None, + Div( id = u"storage_usage_area", ),