{# DO NOT COPY THAT TO OTHER PLACES #}
{# THAT BLOCK SHOULD BE MOVED IN SEPARATE TEMPLATE #}
{# If connection exists then display it status #}
{% if item.connection %}
{% ifequal item.connection.status Connection.STATUS_NEW %}
{% ifequal item.connection.originator Connection.SIDE_FROM %}
Approve
Exclude
{% else %}
Pending
{% endifequal %}
{% endifequal %}
{% ifequal item.connection.status Connection.STATUS_APPROVED %}
Approved
{% endifequal %}
{% ifequal item.connection.status Connection.STATUS_EXCLUDED %}
Excluded
{% endifequal %}
{# If connection does not exist then display then display link #}
{# to create connection if site has owner else #}
{# display link to invite site owner #}
{% else %}
{% if item.src_site.payee %}
Request connection
{% else %}
Invite and connect
{% endif %}
{% endif %}