18 lines
402 B
HTML
18 lines
402 B
HTML
{% extends 'schedule_base.html' %}
|
|
|
|
{% block title %}
|
|
Call for Speakers | {{ block.super }}
|
|
{% endblock %}
|
|
|
|
{% block schedule_content %}
|
|
|
|
{% if not camp.call_for_speakers_open %}
|
|
<div class="alert alert-danger">
|
|
<strong>Note!</strong> This Call for Speakers is no longer relevant. It is kept here for historic purposes.
|
|
</div>
|
|
{% endif %}
|
|
|
|
<h2>Call for Speakers Coming Soon!</h2>
|
|
|
|
{% endblock %}
|