typo
Browse files
App/Templates/Templates.py
CHANGED
@@ -19,7 +19,7 @@ class MessageTemplate:
|
|
19 |
def registration_message(self, user_name, business_name=BUSINESS):
|
20 |
"""Generates the registration message for SMS."""
|
21 |
return self.render_template(
|
22 |
-
"
|
23 |
user_name=user_name,
|
24 |
business_name=business_name,
|
25 |
)
|
@@ -27,7 +27,7 @@ class MessageTemplate:
|
|
27 |
def payment_confirmation_message(self, amount, expiry_date, business_name=BUSINESS):
|
28 |
"""Generates the payment confirmation message for SMS."""
|
29 |
return self.render_template(
|
30 |
-
"
|
31 |
amount=amount,
|
32 |
expiry_date=expiry_date,
|
33 |
business_name=business_name,
|
|
|
19 |
def registration_message(self, user_name, business_name=BUSINESS):
|
20 |
"""Generates the registration message for SMS."""
|
21 |
return self.render_template(
|
22 |
+
"Registration.md",
|
23 |
user_name=user_name,
|
24 |
business_name=business_name,
|
25 |
)
|
|
|
27 |
def payment_confirmation_message(self, amount, expiry_date, business_name=BUSINESS):
|
28 |
"""Generates the payment confirmation message for SMS."""
|
29 |
return self.render_template(
|
30 |
+
"Payment.md",
|
31 |
amount=amount,
|
32 |
expiry_date=expiry_date,
|
33 |
business_name=business_name,
|