{% if manager.my_client_map_annotations %}
{% for ma in manager.my_client_map_annotations %}
{% with canEdit=ma.canEdit showTableHead=True %}
{% include "webclient/annotations/mapannotation.html" %}
{% endwith %}
{% endfor %}
{% elif manager.canAnnotate %}
{% with canEdit=True %}
{% include "webclient/annotations/mapannotation.html" %}
{% endwith %}
{% endif %}
{% if manager.client_map_annotations %}
{% if manager.canAnnotate %}
{% endif %}
{% for ma in manager.client_map_annotations %}
{% with canEdit=ma.canEdit %}
{% include "webclient/annotations/mapannotation.html" %}
{% endwith %}
{% endfor %}
{% endif %}
{% if manager.map_annotations %}
{% for ma in manager.map_annotations %}
{% with canEdit=False showNs=True %}
{% include "webclient/annotations/mapannotation.html" %}
{% endwith %}
{% endfor %}
{% endif %}