This commit is contained in:
2020-06-16 00:02:57 +00:00
parent 1da8b6063d
commit 23d6f9977d
2 changed files with 16 additions and 6 deletions

View File

@@ -59,7 +59,8 @@ If AyaNova looks like it might work for your organization:
=============== ===============
todo: if dbid in url query parameter of contact form on server it should include that in the message
also something needs to be fixed there, it's been in notes forever
todo: red notification automatic when maintenance has expired todo: red notification automatic when maintenance has expired

View File

@@ -11,12 +11,14 @@
<v-btn @click="helpEvaluate()" class="my-8 mr-4">{{ <v-btn @click="helpEvaluate()" class="my-8 mr-4">{{
$ay.t("EvaluationGuide") $ay.t("EvaluationGuide")
}}</v-btn> }}</v-btn>
<v-btn :href="supportLink()" target="blank" class="my-8 mr-4">{{
$ay.t("HelpTechSupport")
}}</v-btn>
</v-col> </v-col>
<v-col cols="12"> <v-col cols="12">
<div class="text-h5 mb-2">{{ $ay.t("GenerateSampleData") }}</div> <div class="text-h5 mt-8 mb-2">{{ $ay.t("GenerateSampleData") }}</div>
picklist of sizes
Evaluation guide in manual Generate sample data Purchase licenses trigger button
Contact support
</v-col> </v-col>
</v-row> </v-row>
</v-form> </v-form>
@@ -79,6 +81,12 @@ export default {
key: "app:help", key: "app:help",
data: "ay-evaluate" data: "ay-evaluate"
}); });
},
supportLink() {
return (
"https://contact.ayanova.com/contact?dbid=" +
window.$gz.store.state.globalSettings.dbId
);
} }
} }
}; };
@@ -142,7 +150,8 @@ function fetchTranslatedText(vm) {
return window.$gz.translation.cacheTranslations([ return window.$gz.translation.cacheTranslations([
"Welcome", "Welcome",
"GenerateSampleData", "GenerateSampleData",
"EvaluationGuide" "EvaluationGuide",
"HelpTechSupport"
]); ]);
} }