camp/content/templates/opt.html
2018-06-10 13:44:16 +00:00

23 lines
573 B
HTML

{% if content.opttext2 %}
<div class="part2">
{% if content.optbtn2 %}
<h4>{{ content.optbtn2|safe }} </h4>
{% endif %}
<p>{{ content.opttext2|safe|linebreaks }}</p>
</div>
{% endif %}
{% if content.opttext3 %}
<div class="part3">
{% if content.optbtn3 %}
<h4>{{ content.optbtn3|safe }} </h4>
{% endif %}
<p>{{ content.opttext3|safe|linebreaks }}</p>
</div>
{% endif %}
{% if content.schedule %}
<div class="schedule">
<h4>{{content.schedulebutton|default:"Schedule"}}</h4>
<p>{{ content.formatted_schedule }}</p>
</div>
{% endif %}