-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of https://github.com/ISPP-G5/NexONG_Backend i…
…nto hotfix/188-fix-put-and-patch-donation
- Loading branch information
Showing
3 changed files
with
48 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Pago Fallido</title> | ||
<script> | ||
setTimeout(function() { | ||
window.location.href = "{{ cancel_redirect }}"; | ||
}, 5000); | ||
</script> | ||
</head> | ||
<body> | ||
<h1>Pago fallido</h1> | ||
<p>Ha habido un problema. Intentelo de nuevo.</p> | ||
<p>Redirigiendo a la página de la organización...</p> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Pago Exitoso</title> | ||
<script> | ||
setTimeout(function() { | ||
window.location.href = "{{ success_redirect }}"; | ||
}, 5000); | ||
</script> | ||
</head> | ||
<body> | ||
<h1>¡Pago exitoso!</h1> | ||
<p>Gracias por tu donación de {{ donation.amount }} euros.</p> | ||
<p>Redirigiendo a la página de la organización...</p> | ||
</body> | ||
</html> |