{% extends "adyengo/base.html" %} {% block content %}

Request recurring contracts

{% if contracts %} {% for contract in contracts %} {% for key, value in contract.details_dict.items %} {% endfor %}
Recurring detail reference {{ contract.recurring_detail_reference }}
Variant {{ contract.variant }}
Creation date {{ contract.creation_date }}
Payment method type {{ contract.payment_method_type }}

Details:

{{ key }} {{ value }}
{% if not forloop.last %}
{% endif %} {% endfor %} {% else %}

No contracts found.

Note that when you just created the contract, it might take a while before the contracts are returned from the Adyen API, because Adyen holds a cache that might not have been updated yet. This could take from several minutes up to several hours.

{% endif %} {% endblock %}