{% extends 'core/base.html' %} {% load contacts_extras campaigns_extras %} {% block title %} Notifications - Campagne - {{ campaign.name }} {% endblock %} {% block content %} {% with campaign|can_launch_campaign as launchable %}

{{ campaign.name }} - Notifications

{% if launchable %}
Notifier les contacts
{% endif %}
{% for n in notifications %} {% endfor %}
Nom Numéro Statut Date d'envoi Actions
{{ n.contact }} {{ n.contact.phone_number | format_number }} {% if n.status == -1 %} {% elif n.status == 1 %} {% else %} {% endif %} {% if n.status == 1 %} {{ n.send_date | date:'d-m-Y h:i:s' }} {% endif %} {% if launchable %} {% if n.sendable or not n.is_sent %} {% endif %} {% endif %}
{% if is_paginated %}
{% include 'core/partials/pagination.html' %}
{% endif %}
{% endwith %} {% endblock %}