projects
/
emacs-init.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
some updates
[emacs-init.git]
/
nxhtml
/
tests
/
in
/
bug532759.djhtml
1
{% if athlete_list %}
2
<p>Here are the athletes: {{ athlete_list }}.</p>
3
{% else %}
4
<p>No athletes are available.</p>
5
{% if coach_list %}
6
<p>Here are the coaches: {{ coach_list }}.</p>
7
{% endif %}
8
{% endif %}
9
{% block content %}
10
11
{% if morning %}
12
<p>Hello World!</p>
13
{% else %}
14
<p>Goodbye World!</p>
15
{% endif %}
16
17
{% endblock %}