{% extends "base.html" %} {% load static %} {% block content %}

Your subscriptions

{% for object in object_list %}
{{object.district}}

Pickup: {{object.district.pickup_time}}

{% if object.subscription_type == 'SMS' %}

Sent to: {{ object.phone_number }}

{% else %}

Sent to: {{object.user.email}}

{% endif %}

{% if object.suspended %} play_circle_filledactivate {% else %} pause_circle_filleddeactivate {% endif %} deletedelete

{% endfor %}
{% endblock %}