{% extends "layout.html.twig" %} {% block title %}{{ campaign.name }} - Self service{% endblock %} {% block body %}

{{ sumClicks|number_format(0, '.', ',') }}
Clicks {% if percentClicks > 0 %} +{{ percentClicks|number_format(1, '.', ',') }}% {% elseif percentClicks < 0 %} {{ percentClicks|number_format(1, '.', ',') }}% {% endif %}
{{ sumApplies|number_format(0, '.', ',') }}
Applies {% if percentApplies > 0 %} +{{ percentApplies|number_format(1, '.', ',') }}% {% elseif percentApplies < 0 %} {{ percentApplies|number_format(1, '.', ',') }}% {% endif %}
{{ sumSpend|number_format(2, '.', ',') }} €
Spend {% if percentSpend > 0 %} +{{ percentSpend|number_format(1, '.', ',') }}% {% elseif percentSpend < 0 %} {{ percentSpend|number_format(1, '.', ',') }}% {% endif %}
{{ cpa|number_format(2, '.', ',') }} €
CPA {% if percentCpa < 0 %} {{ percentCpa|number_format(1, '.', ',') }}% {% elseif percentCpa > 0 %} +{{ percentCpa|number_format(1, '.', ',') }}% {% endif %}
{{ cpc|number_format(2, '.', ',') }} €
CPC {% if percentCpc < 0 %} {{ percentCpc|number_format(1, '.', ',') }}% {% elseif percentCpc > 0 %} +{{ percentCpc|number_format(1, '.', ',') }}% {% endif %}
{{ cr|number_format(2, '.', ',') }} %
CR {% if percentCr > 0 %} +{{ percentCr|number_format(1, '.', ',') }}% {% elseif percentCr < 0 %} {{ percentCr|number_format(1, '.', ',') }}% {% endif %}
Categories Number of jobs Applies CPA Average apply per job
<% cat.domain %> <% cat.nbJob %> <% cat.applies %> <% numberFormat(cat.cpa, 2) %>€ <% numberFormat(cat.moy, 2) %>
Regions Number of jobs Applies CPA Average apply per job
<% region.region %> <% region.nbJob %> <% region.applies %> <% numberFormat(region.cpa, 2) %>€ <% numberFormat(region.moy, 2) %>
{% endblock %} {% block specificJS %} {% endblock %}