27 lines
589 B
HTML
27 lines
589 B
HTML
{% if content.opttext2 %}
|
|
<div class="part2">
|
|
{% if content.optbtn2 %}
|
|
<h4>{{ content.optbtn2|safe }} </h4>
|
|
{% endif %}
|
|
<p>
|
|
{{ content.formatted_opttext2 }}
|
|
</p>
|
|
</div>
|
|
{% endif %}
|
|
{% if content.opttext3 %}
|
|
<div class="part3">
|
|
{% if content.optbtn3 %}
|
|
<h4>{{ content.optbtn3|safe }} </h4>
|
|
{% endif %}
|
|
<p>
|
|
{{ content.formatted_opttext3 }}
|
|
</p>
|
|
</div>
|
|
{% endif %}
|
|
{% if content.schedule %}
|
|
<div class="schedule">
|
|
<h4>{{content.schedulebutton|default:"Schedule"}}</h4>
|
|
<p>{{ content.formatted_schedule }}</p>
|
|
</div>
|
|
{% endif %}
|