You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
783 B
13 lines
783 B
<div class="form-row {{ pregunta.alias }} {{ pregunta.class }}">
|
|
<div class="form-holder">
|
|
{% if pregunta.preTitulo is not empty %}
|
|
<div class="{{ tarea[0].getProcesosId.alias }}_pretitulo">{{ pregunta.preTitulo|trans({})|raw }}</div>
|
|
{% endif %}
|
|
<span id="{{ pregunta.alias }}" class="{{ tarea[0].getProcesosId.alias }}_nombre">{{ pregunta.nombre|trans({})|raw }}</span>
|
|
{% if pregunta.descripcion is not empty %}
|
|
<div class="{{ tarea[0].getProcesosId.alias }}_descripcion">{{ pregunta.descripcion|trans({})|raw }}</div>
|
|
{% else %}
|
|
<div class="{{ tarea[0].getProcesosId.alias }}_descripcion no-contenido">{{ pregunta.descripcion|trans({})|raw }}</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|