witten
/
luminotes
Archived
1
0
Fork 0

Made some visual tweaks to the pricing page.

This commit is contained in:
Dan Helfman 2009-03-02 13:16:40 -08:00
parent 970bc77def
commit ecbaa091cd
4 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@ settings = {
"luminotes.rate_plans": [
{
"name": "free",
"designed_for": "students",
"designed_for": "",
"storage_quota_bytes": 30 * MEGABYTE,
"included_users": 1,
"notebook_sharing": True,

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

View File

@ -295,7 +295,7 @@ class Upgrade_page( Product_page ):
),
) or Div( Div( u"No fee", class_ = u"price_text" ) ),
Div(
u"For", plan[ u"designed_for" ],
plan[ u"designed_for"] and u"For" or " ", plan[ u"designed_for" ],
class_ = u"small_text",
),
( index == self.FOCUSED_PLAN ) and Div( u"Best value", class_ = u"focused_text highlight" ) or None,
@ -332,7 +332,7 @@ class Upgrade_page( Product_page ):
) or None,
class_ = u"subscribe_button_area",
),
( user.rate_plan == 0 ) and Div( "30-day free trial", class_ = u"small_text" ) or None,
( user.rate_plan == 0 ) and Div( ( index > 0 ) and "30-day free trial" or " ", class_ = u"small_text" ) or None,
class_ = ( index == self.FOCUSED_PLAN and u"focused_feature_value" or u"" ),
) for ( index, plan ) in enumerate( rate_plans ) ],
)