summaryrefslogtreecommitdiffstats
path: root/emacs.d/nxhtml/tests/in/bug532759.djhtml
blob: e655dd2004f4834f0a00999bec0a2d177f90bbc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% if athlete_list %}
  <p>Here are the athletes: {{ athlete_list }}.</p>
{% else %}
  <p>No athletes are available.</p>
  {% if coach_list %}
    <p>Here are the coaches: {{ coach_list }}.</p>
  {% endif %}
{% endif %}
{% block content %}

 {% if morning %}
   <p>Hello World!</p>
   {% else %}
     <p>Goodbye World!</p>
   {% endif %}

 {% endblock %}