File indexing completed on 2025-03-09 04:51:28

0001 <html>
0002 
0003 {% if notes %}
0004 {% for note in notes %}
0005 <h2>{{ note.name }}</h2>
0006 <br>
0007 <p>{{ note.description|safe }}</p>
0008 <br>
0009 {% if note.hasAlarm %}
0010 <p>{{ alarm_i18n }} {{ note.alarm }}</p>
0011 {% endif %}
0012 <br>
0013 {% endfor %}
0014 {% endif %}
0015 
0016 </html>
0017