mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-01 03:48:04 +00:00
21 lines
371 B
Django/Jinja
21 lines
371 B
Django/Jinja
{% extends "core/base.jinja" %}
|
|
|
|
{% block content %}
|
|
<h3>{% trans %}Eboutic{% endtrans %}</h3>
|
|
|
|
<div>
|
|
{% if not_enough %}
|
|
{% trans %}Payment failed{% endtrans %}
|
|
{% else %}
|
|
{% trans %}Payment successful{% endtrans %}
|
|
{% endif %}
|
|
<p><a href="{{ url('eboutic:main') }}">{% trans %}Return to eboutic{% endtrans %}</a></p>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|