Mbonea commited on
Commit
dbe08e2
·
1 Parent(s): a0dc3d4
Files changed (1) hide show
  1. App/Templates/Templates.py +2 -2
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
- "registration.md",
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
- "payment_confirmation.md",
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,