{% extends "admin/base_site.html" %}
{% load i18n admin_static admin_modify %}
{% load url from future %}
{% load admin_urls %}
{% block title %}Viewing Timeline for {{ drip.name }}{% endblock title %}
{% block breadcrumbs %}{% endblock %}
{% block content %}
{{ drip.name }} Schedule:
{% for pack in shifted_drips %}
- {% if pack.drip.now_shift_kwargs.days != 0 %}{{ pack.drip.now }}{% else %}today!{% endif %}{% if pack.qs %}
{% for user in pack.qs %}{% if user.email %}
- {{ user.email }} - {{ user.id }} - view email
{% endif %}{% endfor %}
{% endif %}
{% endfor %}
{% endblock content %}