Sith/eboutic/templates/eboutic/eboutic_payment_result.jinja

23 lines
370 B
Django/Jinja

{% extends "core/base.jinja" %}
{% block content %}
<h3>{% trans %}Eboutic{% endtrans %}</h3>
<div>
{% if success %}
{% trans %}Payment successful{% endtrans %}
{% else %}
{% trans %}Payment failed{% endtrans %}
{% endif %}
<p><a href="{{ url('eboutic:main') }}">{% trans %}Return to eboutic{% endtrans %}</a></p>
</div>
{% endblock %}