{% extends "admin/base_site.html" %}
{% block title %}SignalBox Dashboard{% endblock %}
{% block content_title %}
Observations due
{% if item_list %}
Send all pending Observation signals now
{% endif %}
{% endblock %}
{% block content %}
{% if item_list %}
Name |
Study |
Due date/time |
Token |
|
{% for i in item_list %}
{{i.dyad.user.last_name}}, {{i.dyad.user.first_name}} |
{{i.dyad.study}} |
{{i.due}} |
{{i.token}} |
edit |
{% endfor %}
{% else %}
No Observations currently due
{% endif %}
{% if results %}
Did:
{% for i in results %}- {{i}}
{% endfor %}
{% endif %}
{% endblock %}