witten
/
luminotes
Archived
1
0
Fork 0

Moved "sign up for free" on demo page lower down beneath most of the link area.

This commit is contained in:
Dan Helfman 2008-07-28 16:15:15 -07:00
parent d8eccee5aa
commit 5e31887260
1 changed files with 6 additions and 5 deletions

View File

@ -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",
),