|
|
@@ -13,6 +13,10 @@
|
|
|
premium-price="49€"
|
|
|
:items="comparisonItems"
|
|
|
/>
|
|
|
+
|
|
|
+ <div class="asterisk">
|
|
|
+ <span>** Uniquement dédié aux structures adhérentes CMF</span>
|
|
|
+ </div>
|
|
|
</v-row>
|
|
|
</LayoutContainer>
|
|
|
</AnchoredSection>
|
|
|
@@ -29,34 +33,34 @@ const comparisonItems: Array<ComparisonItem> = [
|
|
|
includedInPremium: true,
|
|
|
},
|
|
|
{
|
|
|
- label: 'AGENDA',
|
|
|
+ label: 'SUIVI PÉDAGOGIQUE',
|
|
|
includedInStandard: true,
|
|
|
includedInPremium: true,
|
|
|
},
|
|
|
{
|
|
|
- label: 'SUIVI PÉDAGOGIQUE',
|
|
|
+ label: 'AGENDA',
|
|
|
includedInStandard: true,
|
|
|
includedInPremium: true,
|
|
|
},
|
|
|
{
|
|
|
- label: 'GESTION DU PARC MATÉRIEL',
|
|
|
+ label: 'FACTURATION AUTOMATISÉE',
|
|
|
includedInStandard: true,
|
|
|
includedInPremium: true,
|
|
|
},
|
|
|
{
|
|
|
- label: 'COMMUNICATION',
|
|
|
+ label: 'GESTION DES RÈGLEMENTS',
|
|
|
includedInStandard: true,
|
|
|
includedInPremium: true,
|
|
|
},
|
|
|
{
|
|
|
- label: 'SMS',
|
|
|
- includedInStandard: 'Option',
|
|
|
- includedInPremium: 'Option',
|
|
|
+ label: 'GESTION DU PARC MATÉRIEL',
|
|
|
+ includedInStandard: true,
|
|
|
+ includedInPremium: true,
|
|
|
},
|
|
|
{
|
|
|
- label: 'NOM DE DOMAINE',
|
|
|
- includedInStandard: 'Option',
|
|
|
- includedInPremium: 'Option',
|
|
|
+ label: 'COMMUNICATION',
|
|
|
+ includedInStandard: true,
|
|
|
+ includedInPremium: true,
|
|
|
},
|
|
|
{
|
|
|
label: 'SITE INTERNET',
|
|
|
@@ -69,19 +73,19 @@ const comparisonItems: Array<ComparisonItem> = [
|
|
|
includedInPremium: true,
|
|
|
},
|
|
|
{
|
|
|
- label: 'FONCTIONNALITÉ DU RÉSEAU CMF',
|
|
|
+ label: 'EXPORT DES DONNÉES',
|
|
|
includedInStandard: true,
|
|
|
includedInPremium: true,
|
|
|
},
|
|
|
{
|
|
|
- label: 'SAUVEGARDE',
|
|
|
+ label: 'FONCTIONNALITÉ DU RÉSEAU CMF **',
|
|
|
includedInStandard: true,
|
|
|
includedInPremium: true,
|
|
|
},
|
|
|
{
|
|
|
label: 'EXTRANET UTILISATEURS',
|
|
|
includedInStandard: false,
|
|
|
- includedInPremium: 'Option',
|
|
|
+ includedInPremium: true,
|
|
|
},
|
|
|
{
|
|
|
label: 'PRÉINSCRIPTION EN LIGNE',
|
|
|
@@ -90,11 +94,26 @@ const comparisonItems: Array<ComparisonItem> = [
|
|
|
},
|
|
|
{
|
|
|
label: "GRILLES D'ÉVALUATION",
|
|
|
- includedInStandard: 'Option',
|
|
|
+ includedInStandard: false,
|
|
|
includedInPremium: 'Option',
|
|
|
},
|
|
|
{
|
|
|
label: 'GESTION DES RÈGLEMENTS',
|
|
|
+ includedInStandard: false,
|
|
|
+ includedInPremium: 'Option',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: 'EXPORT DE FACTURATION',
|
|
|
+ includedInStandard: false,
|
|
|
+ includedInPremium: 'Option',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: 'SMS',
|
|
|
+ includedInStandard: 'Option',
|
|
|
+ includedInPremium: 'Option',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: 'NOM DE DOMAINE',
|
|
|
includedInStandard: 'Option',
|
|
|
includedInPremium: 'Option',
|
|
|
},
|
|
|
@@ -104,10 +123,18 @@ const comparisonItems: Array<ComparisonItem> = [
|
|
|
includedInPremium: '1 Go',
|
|
|
},
|
|
|
{
|
|
|
- label: 'PAGE DU SITE INTERNET',
|
|
|
+ label: 'PAGES DU SITE INTERNET',
|
|
|
includedInStandard: 'Restreint',
|
|
|
includedInPremium: 'Illimité',
|
|
|
},
|
|
|
]
|
|
|
</script>
|
|
|
-<style scoped></style>
|
|
|
+<style scoped>
|
|
|
+.asterisk {
|
|
|
+ display: flex;
|
|
|
+ margin: 4px auto 0 auto;
|
|
|
+ width: 63%;
|
|
|
+ justify-content: flex-end;
|
|
|
+ font-style: italic;
|
|
|
+}
|
|
|
+</style>
|