-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactive_notifications.html
More file actions
33 lines (30 loc) · 1.01 KB
/
active_notifications.html
File metadata and controls
33 lines (30 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{% extends "layout.html" %}
{% block title %}
Active Notifications
{% endblock %}
{% block main %}
<form action="{{ url_for('active_notifications') }}" method="post">
<fieldset>
<table style="width:100%"
<th>
<th>Notification Recipient</th>
<th>Notification Type</th>
<th>Send Instant</th>
<th>Delay Seconds</th>
<th>Message</th>
<th>Status</th>
</th>
{% for k in rows %}
<tr>
<td>{{k["first_name"]," ",k["last_name"]}}</td>
<td>{{k["notification_type"]}}</td>
<td>{{k["send_instant"]}}</td>
<td>{{k["delay_seconds"]}}</td>
<td>{{k["message_text"]}}</td>
<td>{{k["status"]}}</td>
</tr>
{% endfor %}
</table>
</fieldset>
</form>
{% endblock %}