witten
/
luminotes
Archived
1
0
Fork 0
This repository has been archived on 2023-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
luminotes/view/Thanks_note.py

31 lines
793 B
Python

from Tags import Span, H3, P, A
class Thanks_note( Span ):
def __init__( self, rate_plan_name = None ):
Span.__init__(
self,
H3( u"thank you" ),
P(
u"""
Thank you for upgrading your Luminotes account!
""",
),
P(
u"""
You are now subscribed to Luminotes%s. Please click on one of your
notebooks to the left to get started with your newly upgraded wiki.
""" % ( rate_plan_name and u" %s" % rate_plan_name or u"" ),
),
P(
u"""
If you have any questions about your upgraded wiki or your Luminotes
account, please
""",
A( u"contact support", href = u"/contact_info", target = "_top" ),
u"""
for assistance.
""",
),
)