File indexing completed on 2025-05-04 04:55:46

0001 <html>
0002 
0003 {% if notes %}
0004 {% for note in notes %}
0005 <table bgcolor="{{ note.backgroundColorName }}">
0006 <tr><td><h2>{{ note.name }}</h2><td></tr>
0007 <tr></tr>
0008 <tr><td>{{ note.description|safe }}</td></tr>
0009 <tr></tr>
0010 {% if note.hasAlarm %}
0011 <tr>{{ alarm_i18n }} {{ note.alarm }}</tr>
0012 {% endif %}
0013 <tr></tr>
0014 </table>
0015 {% endfor %}
0016 {% endif %}
0017 
0018 </html>
0019