From fe9ab74f804560e1edf27f2deb8c52ac121619e1 Mon Sep 17 00:00:00 2001
From: Jorran de Wit <jorrandewit@outlook.com>
Date: Tue, 22 May 2018 20:29:09 +0200
Subject: [PATCH] Try 1.

---
 scipost/templates/scipost/donation_thank_you.html | 15 +++++++++++++++
 scipost/urls.py                                   |  1 +
 2 files changed, 16 insertions(+)
 create mode 100644 scipost/templates/scipost/donation_thank_you.html

diff --git a/scipost/templates/scipost/donation_thank_you.html b/scipost/templates/scipost/donation_thank_you.html
new file mode 100644
index 000000000..c3062e998
--- /dev/null
+++ b/scipost/templates/scipost/donation_thank_you.html
@@ -0,0 +1,15 @@
+{% extends 'scipost/base.html' %}
+
+{% block pagetitle %}: acknowledgement {% endblock pagetitle %}
+
+{% block content %}
+
+<div class="row justify-content-center">
+    <div class="col-12 col-md-8 col-lg-6">
+      <h1 class="highlight">Thank you</h1>
+      <p>Thank you for supporting SciPost. We will keep you continuously updated on any developments on our website, on Twitter at <a href="https://twitter.com/scipost_dot_org">@scipost_dot_org</a>, and via our <a href="{% url 'news:news' %}">News page</a>.</p>
+      <a href="{% url 'journals:publications' %}">See latest Publications of SciPost<a>
+    </div>
+</div>
+
+{% endblock %}
diff --git a/scipost/urls.py b/scipost/urls.py
index 6cb6d492f..e6e4183ba 100644
--- a/scipost/urls.py
+++ b/scipost/urls.py
@@ -28,6 +28,7 @@ urlpatterns = [
     # Info
     url(r'^about$', views.AboutView.as_view(), name='about'),
     url(r'^call$', TemplateView.as_view(template_name='scipost/call.html'), name='call'),
+    url(r'^donations/thank-you/$', TemplateView.as_view(template_name='scipost/donation_thank_you.html'), name='donation_thank_you'),
     url(r'^ExpSustDrive2018$',
         TemplateView.as_view(template_name='scipost/ExpSustDrive2018.html'),
         name='ExpSustDrive2018'),
-- 
GitLab