Your Connections
Account Name
Account Name
Account Name
Account Name
{% for conversation in conversations %}
{% if conversation.conversation_type == 'CredExchange' %}
{% if conversation.status == 'offer_received' %}
Accept Offer
{% endif %}
{% endif %}
{% if conversation.conversation_type == 'ProofRequest' %}
{% if conversation.status == 'Sent' %}
Supply Proof
{% endif %}
{% endif %}
{% if conversation.status == 'Sent' %}
Check Status
{% endif %}
{% if conversation.status == 'Accepted' %}
[Completed]
{% if conversation.conversation_type == 'ProofRequest' %}
Proof is
{{ conversation.proof_state }}
{% endif %}
{% endif %}
{% endfor %}