summaryrefslogtreecommitdiffstats
path: root/emacs.d/nxhtml/tests/in/pavel-071116.djhtml
diff options
context:
space:
mode:
Diffstat (limited to 'emacs.d/nxhtml/tests/in/pavel-071116.djhtml')
-rw-r--r--emacs.d/nxhtml/tests/in/pavel-071116.djhtml31
1 files changed, 31 insertions, 0 deletions
diff --git a/emacs.d/nxhtml/tests/in/pavel-071116.djhtml b/emacs.d/nxhtml/tests/in/pavel-071116.djhtml
new file mode 100644
index 0000000..1476f3a
--- /dev/null
+++ b/emacs.d/nxhtml/tests/in/pavel-071116.djhtml
@@ -0,0 +1,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>