expression_info.html
1.12 KB
<div class="title">Znaczenia:</div>
{% for meaning in meanings.all %}
{% if meaning.wikilink %}
<br><strong>Wikipedia:</strong> <a href="{{ meaning.wikilink }}">{{ meaning.wikilink }}</a>
{% endif %}
<br><strong>Kategoria:</strong> {{ meaning.category.name }}
<table id="selExpressions" class="display dataTable" cellspacing="0" width="100%" role="grid" aria-describedby="expressions_info" style="width: 100%;">
<thead>
<tr role="row"><th rowspan="1" colspan="1">Wyrażenie</th><th rowspan="1" colspan="1">Wyrażenie pochodne</th><th rowspan="1" colspan="1">Źródło</th></tr>
</thead>
<tbody>
{% for expr in meaning.expressions.all %}
{% if not expr.main_expression %}
<tr role="row" class="{% if forloop.counter|divisibleby:2 %}even{% else %}odd{% endif %}">
<td class="sorting_1">{{ expr.text }}</td>
<td>{{ expr.mentions.all.0.text }}</td>
<td>{% for source in expr.sources.all %}{% if forloop.first %}<a href="{{ source.url }}">{{ source.name }}</a>{% else %}, <a href="{{ source.url }}">{{source.name}}</a>{% endif %}{% endfor %}</td>
</tr>
{% endif %}
{% endfor %}
</tbody>
</table>
{% endfor %}