{% load i18n mobile_tags %} Creme Mobile - {% translate 'Activities' %} {% include 'mobile/frags/phonecall_script.html' %}
{% if phone_calls %}
{% for phone_call in phone_calls %}
{% mobile_activity_card phone_call 'done' %}
{% endfor %}
{% else %}
{% translate 'No delayed phone calls' %}
{% endif %} {% if floating_activities %}
{% for activity in floating_activities %}
{% mobile_activity_card activity %}
{% endfor %}
{% else %}
{% translate 'No activity without date' %}
{% endif %} {% if tomorrow_activities %}
{% for activity in tomorrow_activities %}
{% mobile_activity_card activity 'no-button' never_edit_pcall=1 %}
{% endfor %}
{% else %}
{% blocktranslate with tomorrow_date=tomorrow|date:_('l j F') %}No activity planned tomorrow, {{tomorrow_date}}{% endblocktranslate %}
{% endif %}
{% mobile_footer %}