2019-10-10 17:44:21 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
2019-10-11 15:26:27 +01:00
|
|
|
{% macro item_detail(entity) %}
|
|
|
|
{% for key, prop_label in labels.items() %}
|
|
|
|
{% set claims = entity.claims[key] %}
|
|
|
|
{% if claims %}
|
|
|
|
<div>
|
|
|
|
<strong>{{ prop_label }}</strong>:
|
|
|
|
{% for claim in claims %}
|
|
|
|
{% if 'datavalue' in claim.mainsnak %}
|
|
|
|
{% set claim_qid = claim.mainsnak.datavalue.value.id %}
|
|
|
|
<a href="https://www.wikidata.org/wiki/{{ claim_qid }}">{{ other[claim_qid] or '[ label missing ]' }}</a> ({{ claim_qid }})
|
|
|
|
{% else %}
|
|
|
|
<i>no value</i>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endmacro %}
|
|
|
|
|
2019-10-10 21:00:13 +01:00
|
|
|
{% block title %}{{ title }}{% endblock %}
|
2019-10-10 17:44:21 +01:00
|
|
|
|
|
|
|
{% block content %}
|
2019-10-11 15:26:27 +01:00
|
|
|
<div class="p-2">
|
|
|
|
<h1>{{ self.title() }}</h1>
|
|
|
|
{% for item in items %}
|
|
|
|
<div class="card mb-3">
|
|
|
|
<div class="row no-gutters">
|
|
|
|
<div class="col-md-3">
|
|
|
|
<img src="{{ item.image.thumburl }}" class="card-img">
|
|
|
|
</div>
|
|
|
|
<div class="col-md-9">
|
|
|
|
<div class="card-body">
|
|
|
|
<h5 class="card-title">{{ item.label }}</h5>
|
2019-10-10 21:00:13 +01:00
|
|
|
|
2019-10-11 15:26:27 +01:00
|
|
|
<p>
|
|
|
|
<a href="https://www.wikidata.org/wiki/{{ item.qid }}" class="btn btn-primary">view on Wikidata</a>
|
|
|
|
</p>
|
2019-10-10 20:52:11 +01:00
|
|
|
|
2019-10-11 15:26:27 +01:00
|
|
|
{{ item_detail(item.entity) }}
|
|
|
|
</div>
|
2019-10-10 21:00:13 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-10-11 15:26:27 +01:00
|
|
|
{% endfor %}
|
2019-10-10 21:00:13 +01:00
|
|
|
</div>
|
2019-10-10 17:44:21 +01:00
|
|
|
|
|
|
|
{% endblock %}
|