Skip to content

Commit

Permalink
Revert "refactor: (minor change) to reduce diff"
Browse files Browse the repository at this point in the history
This reverts commit e375b3a.
  • Loading branch information
wesleyboar committed Oct 17, 2024
1 parent e375b3a commit 5a38fa7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/tup-cms/src/apps/portal/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ def send_confirmation_email(form_name, form_data):
for key in form_data:
if not key.startswith('recaptcha_'):
label = reverse_slugify(key) if key != 'form_id' else 'Form ID'
tour_receipt += f"<p>{label}: {form_data[key]}</p>\n"
value = form_data[key]
tour_receipt += f"<p>{label}: {value}</p>\n"

email_body = f"""
<p>Greetings,</p>
Expand Down

0 comments on commit 5a38fa7

Please sign in to comment.