Sfoglia il codice sorgente

[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
pull/2/head
Charles-Henri Decultot 7 anni fa
committed by Rushabh Mehta
parent
commit
589b998f3f
1 ha cambiato i file con 20 aggiunte e 0 eliminazioni
  1. +20
    -0
      payments/templates/pages/gcalendar-success.html

+ 20
- 0
payments/templates/pages/gcalendar-success.html Vedi File

@@ -0,0 +1,20 @@
{% extends "templates/web.html" %}

{% block title %}{{ _("Connection Success") }}{% endblock %}

{%- block page_content -%}
<div class='page-card'>
<div class='page-card-head'>
<span class='indicator green'>
{{ _("Success") }}</span>
</div>
<p>{{ _("Your connection request to Google Calendar was successfully accepted") }}</p>
<div><a href='{{ "/desk" }}' class='btn btn-primary btn-sm'>
{{ _("Back to Desk") }}</a></div>
</div>
<style>
.hero-and-content {
background-color: #f5f7fa;
}
</style>
{% endblock %}

Caricamento…
Annulla
Salva