Merge pull request #497 from ae-utbm/eboutic-patch

Correct wrong et_autoanswer url
This commit is contained in:
thomas girod 2022-11-16 23:47:24 +01:00 committed by GitHub
commit e43d53e564
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 11 deletions

View File

@ -42,16 +42,16 @@
{% endif %} {% endif %}
{% endif %} {% endif %}
</p> </p>
{# {% if settings.SITH_EBOUTIC_CB_ENABLED %}#} {% if settings.SITH_EBOUTIC_CB_ENABLED %}
{# <form method="post" action="{{ settings.SITH_EBOUTIC_ET_URL }}">#} <form method="post" action="{{ settings.SITH_EBOUTIC_ET_URL }}">
{# <p>#} <p>
{# {% for (field_name,field_value) in et_request.items() -%}#} {% for (field_name,field_value) in et_request.items() -%}
{# <input type="hidden" name="{{ field_name }}" value="{{ field_value }}">#} <input type="hidden" name="{{ field_name }}" value="{{ field_value }}">
{# {% endfor %}#} {% endfor %}
{# <input type="submit" value="{% trans %}Pay with credit card{% endtrans %}" />#} <input type="submit" value="{% trans %}Pay with credit card{% endtrans %}" />
{# </p>#} </p>
{# </form>#} </form>
{# {% endif %}#} {% endif %}
{% if basket.contains_refilling_item %} {% if basket.contains_refilling_item %}
<p>{% trans %}AE account payment disabled because your basket contains refilling items.{% endtrans %}</p> <p>{% trans %}AE account payment disabled because your basket contains refilling items.{% endtrans %}</p>
{% else %} {% else %}

View File

@ -37,7 +37,7 @@ urlpatterns = [
path("pay/", pay_with_sith, name="pay_with_sith"), path("pay/", pay_with_sith, name="pay_with_sith"),
path("pay/<res:result>/", payment_result, name="payment_result"), path("pay/<res:result>/", payment_result, name="payment_result"),
path( path(
"et_autoanswer/", "et_autoanswer",
EtransactionAutoAnswer.as_view(), EtransactionAutoAnswer.as_view(),
name="etransation_autoanswer", name="etransation_autoanswer",
), ),