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/Processing_download_note.py

27 lines
677 B
Python

from Tags import Html, Head, Meta, H3, P
class Processing_download_note( Html ):
def __init__( self, download_access_id, item_number, retry_count ):
if not retry_count:
retry_count = 0
retry_count += 1
Html.__init__(
self,
Head(
Meta(
http_equiv = u"Refresh",
content = u"2; URL=/users/thanks_download?access_id=%s&item_number=%s&retry_count=%s" %
( download_access_id, item_number, retry_count ),
),
),
H3( u"processing..." ),
P(
"""
Your payment is being processed. This shouldn't take more than a minute. Please wait...
""",
),
)