{% load i18n %}

{% trans 'Phone Call' %}

{% if phonelines|length %}

{% trans 'Active Lines:' %}

{% endif %}
{% trans 'Take phone line' %}
{% if not phonelines|length %}
{% blocktrans %} You do not have a phoneline configured yet; please enter your identifier in the "Take Phone Line" form on the left. {% endblocktrans %}
{% endif %} {% for phonecall in phonecalls %}

{% trans 'Current Call:' %} {{phonecall.caller}}

{% if phonecall.previous_calls %}

{% trans 'Previous calls from same number' %}

    {% for call in phonecall.previous_calls %}
  • {{ call.start }} ({{ call.duration }})
  • {% endfor %}
{% endif %}
{% endfor %}