2016-07-21 23:19:50 +00:00
|
|
|
{% extends "core/base.jinja" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2024-07-23 22:16:31 +00:00
|
|
|
<h3>{% trans %}Eboutic{% endtrans %}</h3>
|
2016-07-21 23:19:50 +00:00
|
|
|
|
2024-07-23 22:16:31 +00:00
|
|
|
<div>
|
2022-09-25 19:29:42 +00:00
|
|
|
{% if success %}
|
2024-07-23 22:16:31 +00:00
|
|
|
{% trans %}Payment successful{% endtrans %}
|
2022-09-25 19:29:42 +00:00
|
|
|
{% else %}
|
2024-07-23 22:16:31 +00:00
|
|
|
{% trans %}Payment failed{% endtrans %}
|
2016-07-21 23:19:50 +00:00
|
|
|
{% endif %}
|
2016-07-26 17:39:19 +00:00
|
|
|
<p><a href="{{ url('eboutic:main') }}">{% trans %}Return to eboutic{% endtrans %}</a></p>
|
2024-07-23 22:16:31 +00:00
|
|
|
</div>
|
2016-07-21 23:19:50 +00:00
|
|
|
|
2022-09-25 19:29:42 +00:00
|
|
|
|
|
|
|
|
2016-07-21 23:19:50 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|