rDrama/files/templates/volunteer.html
2022-12-01 18:53:24 -08:00

22 lines
No EOL
359 B
HTML

{% extends "default.html" %}
{% block pagetitle %}Volunteer{% endblock %}
{% block content %}
<div>
hello! welcome to the volunteering
</div>
{% if duty == None %}
<div>
there is no volunteering to do, but thanks
</div>
{% else %}
<div>
{% from duty.embed_template() import display %}
{{ display(duty) }}
</div>
{% endif %}
{% endblock %}