Actions

Translations

Theme editor/5/nl: Difference between revisions

From LimeSurvey Manual

(Created page with "<syntaxhighlight lang="php" enclose="div"><center><font face='verdana' color='red'>{SURVEYNAME}</font><br /> <font face='verdana' color='blue'><u>{SURVEYDESCRIPTION}</u></cent...")
 
No edit summary
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<syntaxhighlight lang="php" enclose="div"><center><font face='verdana' color='red'>{SURVEYNAME}</font><br />
<syntaxhighlight lang="twig">
<font face='verdana' color='blue'><u>{SURVEYDESCRIPTION}</u></center>
<div class="{{ aSurveyInfo.class.answercontainer }} col-xs-12" {{ aSurveyInfo.attr.answercontainer }}>
    {# NB: Als je de vraag er anders wilt laten uitzien, gebruik dan een vraagthema #}
    {{ aQuestion.answer | raw }}
</div>
</syntaxhighlight>
</syntaxhighlight>

Latest revision as of 20:48, 9 March 2022

Message definition (Theme editor)
<syntaxhighlight lang="twig">
<div class="{{ aSurveyInfo.class.answercontainer }} col-xs-12" {{ aSurveyInfo.attr.answercontainer }}>
   {# NOTE: If you want to customize the question rendering, use a question theme #}
   {{ aQuestion.answer | raw }}
</div>
</syntaxhighlight>
<div class="{{ aSurveyInfo.class.answercontainer }} col-xs-12" {{ aSurveyInfo.attr.answercontainer }}>
    {# NB: Als je de vraag er anders wilt laten uitzien, gebruik dan een vraagthema #}
    {{ aQuestion.answer | raw }}
</div>