{% extends "_donut.html" %}
{% block pageHead %}
{{ super() }}
{% endblock %}
{% block header %}
{{ super() }}
{% endblock %}
{% block main %}
{{config.actions.edit|capitalize}}
{{structure.description}}
{% include "_basic-form.html" %}
{% if app.client.id %}
- Client ID
- {{app.client.id}}
{% endif %}
{% if app.client.secret %}
- Client Secret
- {{app.client.secret}} (Create new Client Secret)
{% endif %}
{% if app.endpoints %}
Endpoints
{% if app.endpoints.live | length %}
Live
Success |
Timestamp |
{% for entry in app.endpoints.live %}
{{entry.response}} |
{{entry.timestamp}} |
{% endfor %}
{% endif %}
{% if app.endpoints.updated | length %}
Updated
Success |
Timestamp |
{% for entry in app.endpoints.updated %}
{{entry.response}} |
{{entry.timestamp}} |
{% endfor %}
{% endif %}
{% if app.endpoints.sunset | length %}
Sunset
Success |
Timestamp |
{% for entry in app.endpoints.sunset %}
{{entry.response}} |
{{entry.timestamp}} |
{% endfor %}
{% endif %}
{% endif %}
{% endblock %}
{% block footer %}
{{ super() }}
{% endblock %}