Improvements

This commit is contained in:
Edward Betts 2023-09-21 04:59:17 +01:00
parent 77f2baea38
commit 9f3a7995a1
9 changed files with 532 additions and 110 deletions

View file

@ -25,7 +25,6 @@
<div class="form-check">
<input class="form-check-input" type="checkbox" name="person_id" value="{{ item.id }}" id="person{{ item.id }}">
<label class="form-check-label" for="person{{ item.id }}">
{{ item.id }}
<a href="{{ url_for("person", person_id=item.id) }}">{{ item.name }}</a>
{% if item.wikidata_qid %}
@ -33,6 +32,10 @@
<a href="https://www.wikidata.org/wiki/{{ item.wikidata_qid }}">{{ item.wikidata_qid }} on Wikidata</a>
{% endif %}
</label>
<input class="form-check-input" type="radio" name="name" value="{{ item.id }}" id="name{{ item.id }}">
<label class="form-check-label" for="name{{ item.id }}">use this name</label><br>
{% for conf in item.conferences %} 👥{{ conf.title }}{% endfor %}
</div>
{% endfor %}