Update templates/message.html
Browse files- templates/message.html +8 -0
templates/message.html
CHANGED
@@ -5,6 +5,14 @@
|
|
5 |
<div id="birthday-message">
|
6 |
{{ birthday_message }}
|
7 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
<img id="birthday-image" src="{{ birthday_image_url }}" alt="Krishna Birthday Image">
|
9 |
<lottie-player src="/static/assets/krishna-lottie.json" background="transparent" speed="1" style="width: 300px; height: 300px; margin: 0 auto;" loop autoplay></lottie-player>
|
10 |
{% endblock %}
|
|
|
5 |
<div id="birthday-message">
|
6 |
{{ birthday_message }}
|
7 |
</div>
|
8 |
+
<div id="gift-suggestions">
|
9 |
+
<h2>Krishna’s Gift Ideas for You!</h2>
|
10 |
+
<ul>
|
11 |
+
{% for suggestion in gift_suggestions %}
|
12 |
+
<li>{{ suggestion }}</li>
|
13 |
+
{% endfor %}
|
14 |
+
</ul>
|
15 |
+
</div>
|
16 |
<img id="birthday-image" src="{{ birthday_image_url }}" alt="Krishna Birthday Image">
|
17 |
<lottie-player src="/static/assets/krishna-lottie.json" background="transparent" speed="1" style="width: 300px; height: 300px; margin: 0 auto;" loop autoplay></lottie-player>
|
18 |
{% endblock %}
|