Reminders
{% regroup object.reminders.all by get_action_display as action_list %}
    {% for action in action_list %}
  • {{ action.grouper }}
      {% for reminder in action.list %}
    • {{ reminder.time|date:"SHORT_DATETIME_FORMAT" }}
    • {% endfor %}

  • {% empty %}
  • No reminders yet.
  • {% endfor %}