depicts/templates/property.html

37 lines
814 B
HTML
Raw Normal View History

2019-09-13 17:16:37 +01:00
{% extends "base.html" %}
{% block title %}{{ label }}{% endblock %}
{% block content %}
<div class="m-3">
<h1>{{ self.title() }}</h1>
2019-09-27 15:35:26 +01:00
<p><a href="{{ url_for('browse_page') }}">back to index</a></p>
2019-09-13 17:16:37 +01:00
<p>Sort order:
{% if order == 'name' %}
<b>name</b> or <a href="{{ set_url_args(sort='count') }}">count</a>
{% else %}
<a href="{{ set_url_args(sort='name') }}">name</a> or <b>count</b>
{% endif %}
</p>
<p>Total: {{ hits | length }}</p>
2019-09-13 17:16:37 +01:00
<ul>
{% for hit in hits %}
2019-09-13 17:16:37 +01:00
<li>
<a href="{{ url_for('browse_page', **{pid: hit.qid}) }}">{{ hit.label }}</a>
({{ '{:,d}'.format(hit.count) }} artworks)
2019-09-13 17:16:37 +01:00
{% if not hit.label %}
<a href="https://wikidata.org/wiki/{{ hit.qid }}">view in Wikidata</a>
2019-09-13 17:16:37 +01:00
{% endif %}
</li>
{% endfor %}
</ul>
</div>
{% endblock %}