- Posts: 3
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
Please Log in to join the conversation.
{# If the question number is to be shown (set in survey settings) #} {% if (aShow.question_number) %} <span class='{{ aSurveyInfo.class.questionnumber }}' {{ aSurveyInfo.attr.questionnumber }} > {{ aQuestion.number }} </span> {% endif %} {# If the question code is to be shown (set in survey settings) #} {% if (aShow.question_code) %} <span class='{{ aSurveyInfo.class.questioncode }}' {{ aSurveyInfo.attr.questioncode }}> {{ aQuestion.code }} </span> {% endif %} {# The question text as entered by the survey creator in question editing #} <div class="{{ aSurveyInfo.class.questiontext }}" {{ aSurveyInfo.attr.questiontext }}> <div id="ls-question-text-{{ aQuestion.SGQ }}" class="{{ aSurveyInfo.class.lsquestiontext }}" {{ aSurveyInfo.attr.lsquestiontext }}> {{ aQuestion.text | raw }} {% if aQuestion.mandatory != '' %} <small class="{{ aSurveyInfo.class.questionasterixsmall }} text-danger fa fa-asterisk small" {{ aSurveyInfo.attr.questionasterixsmall }}></small> {% endif %} </div> </div>
small.fa-asterisk { display: inline-block; transform: translateY(-50%); }