Change quest descriptions and orders in order to improve data quality

This commit is contained in:
Pieter Vander Vennet 2020-07-13 12:10:43 +02:00
parent 49cab66a72
commit 6828699a4c
11 changed files with 77 additions and 13 deletions

View file

@ -0,0 +1,19 @@
import {TagRenderingOptions} from "../TagRendering";
export class DescriptionQuestion extends TagRenderingOptions{
constructor(category: string) {
super({
question: "Zijn er bijzonderheden die we moeten weten over dit "+category+"?<br>" +
"<span class='question-subtext'>Je hoeft niet te herhalen wat je net hebt aangeduid.<br/>" +
"Voel je vrij om dit veld over te slaan.</span>",
freeform:{
key:"description:0",
renderTemplate: "{description:0}",
template: "$$$"
}
});
}
}