{% extends "email/base.html" %} {% block title %}{{ subject|default:'Still here when you are' }}{% endblock %} {% block hero %} {% if inactive_days and inactive_days >= 14 %} {% include "email/partials/_hero.html" with hero_variant="warning" hero_title=headline|default:"Still here when you are" hero_subtitle="Your progress is unchanged." hero_icon="sad.png" %} {% elif inactive_days and inactive_days >= 7 %} {% include "email/partials/_hero.html" with hero_variant="warning" hero_title=headline|default:"Still here when you are" hero_subtitle="It has been a while since your last task." hero_icon="star-fall.png" %} {% else %} {% include "email/partials/_hero.html" with hero_variant="neutral" hero_title=headline|default:"Still here when you are" hero_subtitle="Your queue is ready when you return." hero_icon="smile.png" %} {% endif %} {% endblock %} {% block content %} {% if body_text %}
{{ body_text }}
{% else %}{% if inactive_days %}It has been {{ inactive_days }} days since your last task.{% else %}It has been a while since your last task.{% endif %} Your queue and progress are unchanged. Log in and clear one when you can.
{% endif %} {% if cta_url %} {% include "email/partials/_cta.html" with cta_url=cta_url cta_label=cta_label|default:"Return to Workspace" %} {% endif %} {% include "email/partials/_settings_prefs_note.html" %} {% if sender_name %}{{ sender_name }}
{{ sender_title }}
{% endif %} {% endblock %}