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

@ -15,27 +15,49 @@
<button type="submit" class="btn btn-primary">Search</button>
</form>
<div style="margin-bottom:1rem">
👥
{{ "{:,d}".format(count.conference) }} conferences<br/>
🌍
{{ "{:,d}".format(count.country) }} countries<br/>
📍
{{ "{:,d}".format(count.venue) }} venues<br/>
🎤
{{ "{:,d}".format(count.event) }} talks -
<a href="{{ url_for("events_page") }}">most common titles</a><br/>
👤
{{ "{:,d}".format(count.person) }} speakers
<a href="{{ url_for("top_speakers_page") }}">top speakers</a><br/>
</div>
<h2>Conferences</h2>
{% for item in items %}
{% if loop.first or item.start.year != loop.previtem.start.year %}
<h3>{{ item.start.year }}</h3>
{% endif %}
<div style="margin-bottom:1.5rem">
👥
<a href="{{ url_for("conference_page", short_name=item.short_name) }}">{{ item.title }}</a>
📅
{{ item.start.strftime("%d %b %Y") }}
<br/>
{% if item.venue %}
📍
{{ item.venue.name }}
&ndash;
{{ item.venue.city.name }},
{{ item.venue.city.country.name }}
{{ item.venue.city.country.flag }}
<br/>
{% endif %}
{#
{% if item.series %}
📃 Series: {{ item.series.name }}
<br/>
{% endif %}
#}
{{ (item.end - item.start).days + 1 }} days,
{{ item.events.count() }} talks,