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