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

32 lines
757 B
Python

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