22 lines
No EOL
359 B
HTML
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 %} |