Reorganise code
This commit is contained in:
parent
a5f8070179
commit
253096bf59
21 changed files with 0 additions and 0 deletions
59
confarchive/templates/index.html
Normal file
59
confarchive/templates/index.html
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}Conference archive{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div>
|
||||
<h1>Conference archive</h1>
|
||||
|
||||
<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<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 }}
|
||||
–
|
||||
{{ 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,
|
||||
{{ item.people_detail.count() }} speakers<br/>
|
||||
</div>
|
||||
{% endfor %}
|
||||
|
||||
</div>
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue