{% extends 'core/base.html' %} {% load campaigns_extras %} {% block content %}

Campagnes

{% include 'core/partials/flash_messages.html' %}
{% for c in list_objects %} {% endfor %}
Nom Lancement Statut Actions
{{ c.name }} {{ c.start_date|date:"d-m-Y H:i" }}
{% widthratio c.sent_count c.notification_count 100 as sent %}
{{ sent }}% Sent
{% widthratio c.failed_count c.notification_count 100 as failed %}
{{ fail }}% Failed
{% with c|can_launch_campaign as launchable %} {% if launchable %} {% endif %} {% endwith %}
{% include 'core/partials/pagination.html' %}
{% endblock %}