camp/content/templates/opt.html

23 lines
579 B
HTML
Raw Normal View History

2017-12-22 20:08:54 +00:00
{% if content.opttext2 %}
2017-12-18 13:44:11 +00:00
<div class="part2">
2017-12-22 20:08:54 +00:00
{% if content.optbtn2 %}
2017-12-18 13:44:11 +00:00
<h4>{{ content.optbtn2|safe }} </h4>
2017-12-22 20:08:54 +00:00
{% endif %}
2017-12-18 13:44:11 +00:00
<p>{{ content.opttext2|safe|linebreaks }}</p>
</div>
{% endif %}
2017-12-22 20:08:54 +00:00
{% if content.opttext3 %}
2017-12-18 13:44:11 +00:00
<div class="part3">
2017-12-22 20:08:54 +00:00
{% if content.optbtn3 %}
2017-12-18 13:44:11 +00:00
<h4>{{ content.optbtn3|safe }} </h4>
2017-12-22 20:08:54 +00:00
{% endif %}
2017-12-18 13:44:11 +00:00
<p>{{ content.opttext3|safe|linebreaks }}</p>
</div>
{% endif %}
{% if content.schedule %}
<div class="schedule">
<h4>{{content.schedulebutton|default:"Schedule"}}</h4>
<p>{{ content.schedule|safe|linebreaks }}</p>
</div>
{% endif %}