{% load i18n creme_ctype creme_perms mobile_tags %} Creme Mobile - {% translate 'Directory' %} {% include 'mobile/frags/phonecall_script.html' %} {% include 'mobile/frags/search_div.html' %}
{% with contact_ctype='PERSONS_CONTACT_MODEL'|ctype_for_swappable orga_ctype='PERSONS_ORGANISATION_MODEL'|ctype_for_swappable %} {% with contact_creation_perm=user|has_perm_to_create:contact_ctype orga_creation_perm=user|has_perm_to_create:orga_ctype %} {% if contact_creation_perm or orga_creation_perm %}
{% if contact_creation_perm %} {% translate 'Create a contact' %} {% endif %} {% if orga_creation_perm %} {% translate 'Create an organisation' %} {% endif %}
{% endif %} {% endwith %} {% endwith %}
{% if favorite_contacts %} {% blocktranslate count counter=favorite_contacts|length %}{{counter}} favorite contact{% plural %}{{counter}} favorite contacts{% endblocktranslate %} {% else %} {% translate 'No favorite contact' %} {% endif %}
{% for contact in favorite_contacts %}
{% include 'mobile/frags/contact_card.html' %}
{% endfor %}
{% if favorite_organisations %} {% blocktranslate count counter=favorite_organisations|length %}{{counter}} favorite organisation{% plural %}{{counter}} favorite organisations{% endblocktranslate %} {% else %} {% translate 'No favorite organisation' %} {% endif %}
{% for orga in favorite_organisations %}
{% include 'mobile/frags/orga_card.html' %}
{% endfor %}
{% mobile_footer %}