summaryrefslogtreecommitdiffstats
path: root/emacs.d/nxhtml/tests/in/pavel-071116.djhtml
blob: 1476f3ada90edaaaee2d788af9a2393786455bf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
 <html>
{% extends "base.html" %}
<head>
<title>Muzikanti z lekce 4</title>
</head>
<body>
<table>
some text not within django block
{# some comment else #}
{% for muzikant in people %}
<tr>
<td>
{{ muzikant.name }}
<b>
{% comment %}
something else
{% if muzikant.nemamezeru %}*{% endif %} {% endcomment %}
</b>
</td>
<td>
<i {% if muzikant.ma_duraz %} style="font-weight: bold;"{% else %}{% endif %}>
{{ muzikant.genre|rjust|lower }}
</i>
</td>
</tr>
{% endfor %}
</table>
{% get_current_time "%Y-%M-%d %I:%M %p" as my_current_time %}
<p>The current time is {{ my_current_time }}.</p>
</body>
</html>