Ask user to connect to Wikidata account
This commit is contained in:
parent
7a233021fd
commit
f5efbf1d85
1
app.py
1
app.py
|
@ -410,6 +410,7 @@ def item_page(item_id):
|
||||||
catalog_detail=catalog_detail,
|
catalog_detail=catalog_detail,
|
||||||
labels=find_more_props,
|
labels=find_more_props,
|
||||||
entity=item.entity,
|
entity=item.entity,
|
||||||
|
username=get_username(),
|
||||||
label=label,
|
label=label,
|
||||||
image=image,
|
image=image,
|
||||||
other=other,
|
other=other,
|
||||||
|
|
|
@ -84,6 +84,14 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{% if not username %}
|
||||||
|
<div class="alert alert-info mt-4" role="alert">
|
||||||
|
This tool must be connected with Wikidata to work.
|
||||||
|
</div>
|
||||||
|
<p><a href="{{ url_for('start_oauth') }}" class="btn btn-primary btn-lg">Connect with Wikidata</a>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if username %}
|
||||||
<form method="POST" action="{{ url_for('save', item_id=item_id) }}">
|
<form method="POST" action="{{ url_for('save', item_id=item_id) }}">
|
||||||
{% raw %}
|
{% raw %}
|
||||||
<div id="app" class="mt-2">
|
<div id="app" class="mt-2">
|
||||||
|
@ -129,6 +137,7 @@
|
||||||
</div>
|
</div>
|
||||||
{% endraw %}
|
{% endraw %}
|
||||||
</form>
|
</form>
|
||||||
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<div class="flex-shrink-1 vh-100">
|
<div class="flex-shrink-1 vh-100">
|
||||||
<img src="{{ image.thumburl }}" />
|
<img src="{{ image.thumburl }}" />
|
||||||
|
|
Loading…
Reference in a new issue