{% extends "admin/base_site.html" %} {% load markup humanize %} {% block coltype %}colMS{% endblock %} {% block extrahead %} {{block.super}} {% endblock extrahead %} {% block content_title %} Date-shifting observations for: {{membership}} {% endblock %} {% block content %}
{% if not membership.observations %}

No observations available to shift

{% else %}

Current randomisation date: {{membership.date_randomised|naturalday}}

{% csrf_token %} {{form.as_p}}

Observations affected:

    {% for i in membership.observations %} {% if not i.timeshift_allowed %}{%endif%}
  • {{i.due.time}} {{i.due|naturalday}}: {{i.script}}
  • {% if not i.timeshift_allowed %}
    {%endif%} {% endfor %}
{% endif %}
{% endblock %} {% block sidebar %} {% endblock %}