Created
June 10, 2023 16:22
-
-
Save nuriyevn/8328e4709991f17e7fdc878c8286417b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head><title>Ordering notice</title></head> | |
<body> | |
<h1>Ordering notice</h1> | |
<p>Dear {{ person_name }},</p> | |
<p>Thanks for placing an order from {{ company }}. It's scheduled to | |
ship on {{ ship_date|date:"F j, Y" }}.</p> | |
<p>Here are the items you've ordered:</p> | |
<ul> | |
{% for item in item_list %} | |
<li>{{ item }}</li> | |
{% endfor %} | |
</ul> | |
{% if ordered_warranty %} | |
<p>Your warranty information will be included in the packaging.</p> | |
{% else %} | |
<p>You didn't order a warranty, so you're on your own when | |
the products inevitably stop working.</p> | |
{% endif %} | |
<p>Sincerely,<br />{{ company }}</p> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment