94d2fc1815
* Added nxhtml, mostly for django support. * Changed some org settings.
31 lines
602 B
Text
31 lines
602 B
Text
<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>
|