You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- {% extends "templates/web.html" %}
-
- {% block title %}{{ _("Payment Success") }}{% endblock %}
-
- {%- block page_content -%}
- <div class='page-card'>
- <div class='page-card-head'>
- <span class='indicator green'>
- {{ _("Success") }}</span>
- </div>
- <p>{{ payment_message or _("Your payment was successfully accepted") }}</p>
- {% if not payment_message %}
- <div>
- <a
- href='{{ frappe.form_dict.redirect_to or "/" }}'
- class='btn btn-primary btn-sm'>
- {{ _("Continue") }}
- </a>
- </div>
- {% endif %}
- </div>
- <style>
- {% include "templates/styles/card_style.css" %}
- </style>
- <script>
- frappe.ready(function() {
- if('{{ frappe.form_dict.redirect_to or "" }}'){
- setTimeout(function(){
- window.location.href = '{{ frappe.form_dict.redirect_to }}';
- }, 4000);
- }
- })
- </script>
- {% endblock %}
|