{% load i18n %} {% load static %}

Your Connections

Account Name
Account Name
Account Name
Account Name
{% for conversation in conversations %}

{{ conversation.status }} ({{ conversation.conversation_type }}): {{ conversation.connection.partner_name }}

{% if conversation.conversation_type == 'CredExchange' %} {% if conversation.status == 'offer_received' %} Accept Offer {% endif %} {% endif %} {% if conversation.conversation_type == 'ProofRequest' %} {% if conversation.status == 'request_received' %} Supply Proof {% endif %} {% if conversation.status == 'verified' %} [Completed] Proof is {{ conversation.status }} {% endif %} {% endif %} {% if conversation.status == 'Sent' %} Check Status {% endif %} {% if conversation.status == 'Accepted' %} [Completed] {% if conversation.conversation_type == 'ProofRequest' %} Proof is {{ conversation.status }} {% endif %} {% endif %}
{% endfor %}