from Tags import Span, H3, P, A from config.Version import VERSION class Thanks_download_note( Span ): def __init__( self, download_url ): Span.__init__( self, H3( u"thank you" ), P( u""" Thank you for purchasing Luminotes Desktop! Your payment has been received, and a receipt for your purchase has been emailed to you. """, ), P( A( u"Download Luminotes Desktop version %s" % VERSION, href = download_url ), """ and get started taking notes with your own personal wiki. """, ), P( u""" It's a good idea to bookmark this page so that you can download Luminotes Desktop or upgrade to new versions as they are released. """, ), P( u""" If you have any questions about Luminotes Desktop or your purchase, please """, A( u"contact support", href = u"/contact_info", target = "_top" ), u""" for assistance. """, ), )