camp/content/templates/opt.html

23 lines
573 B
HTML
Raw Permalink 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>
2018-06-10 13:44:16 +00:00
<p>{{ content.formatted_schedule }}</p>
2017-12-18 13:44:11 +00:00
</div>
{% endif %}