{% load i18n %}
{#
{{call_start|date:_('d/m/Y H:i')}} / {% translate 'Call in progress' %}
{% if phone_call %}{{phone_call}}
{% endif %} {% if called_contact %}
{% blocktranslate with last_name=called_contact.last_name first_name=called_contact.first_name %}You left the application to call {{first_name}} {{last_name}} to {{number}}, you can save the result if this call.{% endblocktranslate %}
{% elif called_orga %}
{% blocktranslate with name=called_orga.name %}You left the application to call {{name}} to {{number}}, you can save the result if this call.{% endblocktranslate %}
{% endif %}
{% translate 'Call minutes' as minutes_label %} {{minutes_label}}
{% if participant_contacts or participant_organisations %}
{% for contact in participant_contacts %} {% if contact.id != user_contact_id %} {% include 'mobile/frags/contact_card.html' with card_classes='participant participant-type-contact card-component' %} {% endif %} {% endfor %} {% for orga in participant_organisations %} {% include 'mobile/frags/orga_card.html' with card_classes='participant participant-type-orga card-component' %} {% endfor %}
{% endif %}