From 589b998f3f8108279a2b720a989828ce67209c8d Mon Sep 17 00:00:00 2001 From: Charles-Henri Decultot Date: Fri, 6 Apr 2018 07:13:49 +0200 Subject: [PATCH] [New Feature] Google Calendar Connector (#5266) * Addition of a filter for last sync timestamp * Google calendar connector wip * Google calendar integration * Add test for account creation * Codacy corrections * Remove unused import * New section Google Services * Add no_copy to migration custom field --- .../templates/pages/gcalendar-success.html | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 payments/templates/pages/gcalendar-success.html diff --git a/payments/templates/pages/gcalendar-success.html b/payments/templates/pages/gcalendar-success.html new file mode 100644 index 0000000..b6d2230 --- /dev/null +++ b/payments/templates/pages/gcalendar-success.html @@ -0,0 +1,20 @@ +{% extends "templates/web.html" %} + +{% block title %}{{ _("Connection Success") }}{% endblock %} + +{%- block page_content -%} +
+
+ + {{ _("Success") }} +
+

{{ _("Your connection request to Google Calendar was successfully accepted") }}

+
+ {{ _("Back to Desk") }}
+
+ +{% endblock %}