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_with_format}}
    • {% endfor %}

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