{% trans 'Upcoming events' as title %}
{% include 'rewards_reward_point_redemption_event_list.html' with title=title events=upcoming_events %}
{% trans 'Past events' as title %}
{% include 'rewards_reward_point_redemption_event_list.html' with title=title events=past_events %}
{% endblock %}
{% block modals %}
{{ block.super }}
{% trans 'Delete event' as title %}
{% trans 'Do you really want to delete the event ?' as question %}
{% trans 'Delete event' as action_text %}
{% include 'confirmation_modal.html' with modal_id='deleteEventModal' title=title question=question action_text=action_text btn_type='danger' %}
{% endblock %}