2019-09-29 20:19:40 +01:00
|
|
|
{% from "macro.html" import render_pagination %}
|
2019-09-13 17:16:37 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}{{ label }}{% endblock %}
|
|
|
|
|
|
|
|
{% block style %}
|
|
|
|
<style>
|
|
|
|
.card-columns { column-count: 6; }
|
|
|
|
</style>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="m-3">
|
|
|
|
<h1>{{ self.title() }}</h1>
|
|
|
|
|
|
|
|
{#
|
|
|
|
{% for key, label in property_labels.items() %}
|
|
|
|
<h4>{{ label }} ({{ key }})</h4>
|
|
|
|
<pre>{{ item_entity['claims'][key] | pprint }}</pre>
|
|
|
|
{% endfor %}
|
|
|
|
#}
|
|
|
|
|
2019-10-09 13:30:15 +01:00
|
|
|
<p>
|
|
|
|
<a href="{{ url_for('browse_page') }}">browse index</a>
|
|
|
|
{% for pid, qid in params %}
|
|
|
|
| <a href="{{ url_for('property_query_page', property_id=pid[1:]) }}">browse {{ labels[pid] }} list</a>
|
|
|
|
{% endfor %}
|
|
|
|
</p>
|
|
|
|
|
2019-11-25 11:49:34 +00:00
|
|
|
<p>{{ '{:,d}'.format(total) }} artworks found</p>
|
2019-09-13 17:16:37 +01:00
|
|
|
|
2019-10-14 14:33:29 +01:00
|
|
|
<p class="mb-3">
|
|
|
|
<a href="#" id="toggle-filters" class="btn btn-primary">toggle filters</a>
|
|
|
|
<a href="{{ catalog_url }}" class="btn btn-primary">catalog artwork</a>
|
|
|
|
</p>
|
2019-09-27 15:38:36 +01:00
|
|
|
|
|
|
|
<div id="filters">
|
2019-09-13 17:16:37 +01:00
|
|
|
{% for key, values in facets.items() %}
|
|
|
|
<p>{{ prop_labels[key] }}:
|
|
|
|
{% for v in values %}
|
2019-09-16 08:59:53 +01:00
|
|
|
<a href="{{ set_url_args(**{key: v.qid}) }}">{{ v.label }}</a> ({{ v.count }})
|
2019-09-13 17:16:37 +01:00
|
|
|
{% if not loop.last %}|{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</p>
|
|
|
|
{% endfor %}
|
2019-09-27 15:38:36 +01:00
|
|
|
</div>
|
2019-09-13 17:16:37 +01:00
|
|
|
|
|
|
|
<div class="card-columns">
|
|
|
|
{% for item in items %}
|
|
|
|
{% set image = item.image %}
|
|
|
|
<div class="card">
|
|
|
|
<a href="{{ item.url }}">
|
|
|
|
{# <img src="{{ image.thumburl }}" height="{{ image.thumbheight }}" width="{{ image.thumbwidth }}" class="card-img-top"></a> #}
|
|
|
|
<img src="{{ image.thumburl }}" class="card-img-top"></a>
|
|
|
|
<div class="card-body">
|
|
|
|
<h5 class="card-title">{{ item.label }}</h5>
|
|
|
|
<p class="card-text">by {{ item.artist_name }}
|
|
|
|
{% if item.date %}({{ item.date }}){% endif %}
|
2019-11-25 15:46:05 +00:00
|
|
|
<div>
|
|
|
|
{% for depicts_label in item.depicts %}
|
|
|
|
<span class="badge badge-primary">{{ depicts_label }}</span>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2019-09-13 17:16:37 +01:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
|
2019-09-29 20:19:40 +01:00
|
|
|
{{ render_pagination(pager) }}
|
2019-09-13 17:16:37 +01:00
|
|
|
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
2019-09-27 15:38:36 +01:00
|
|
|
|
|
|
|
{% block script %}
|
|
|
|
<script>
|
|
|
|
$('#filters').hide();
|
|
|
|
|
|
|
|
$('#toggle-filters').click((event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
$('#filters').toggle()
|
|
|
|
});
|
|
|
|
|
|
|
|
</script>
|
|
|
|
{% endblock %}
|