77 lines
1.7 KiB
HTML
77 lines
1.7 KiB
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block title %}{{ item.title }}{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div class="container">
|
||
|
<div class="row">
|
||
|
<h1>{{ item.title }}</h1>
|
||
|
<p><a href="{{ url_for("index") }}">home</a></p>
|
||
|
|
||
|
<ul>
|
||
|
<li>start: {{ item.start }}</li>
|
||
|
<li>end: {{ item.end }}</li>
|
||
|
{% if days %}
|
||
|
<li>days: {{ item.days }}</li>
|
||
|
{% endif %}
|
||
|
<li>short name: {{ item.short_name }}</li>
|
||
|
<li>country: {{ item.country or "n/a" }}</li>
|
||
|
</ul>
|
||
|
|
||
|
<h3>Talks</h3>
|
||
|
|
||
|
<p>{{ item.events.count() }} talks</p>
|
||
|
{% for event in item.events %}
|
||
|
|
||
|
<div class="card my-2">
|
||
|
<div class="card-body">
|
||
|
<h5 class="card-title">
|
||
|
<a href="{{ url_for("event_page", event_id=event.id) }}">{{ event.title }}</a>
|
||
|
</h5>
|
||
|
<h6 class="card-subtitle mb-2 text-body-secondary">
|
||
|
{% if event.event_date %}
|
||
|
{{ event.event_date.strftime("%d %b %Y at %H:%M") }}
|
||
|
{% else %}
|
||
|
event date missing
|
||
|
{% endif %}
|
||
|
</h6>
|
||
|
<p class="card-text">
|
||
|
{% if event.url %}
|
||
|
<a href="{{ event.url }}">talk on conference website</a>
|
||
|
{% endif %}
|
||
|
|
||
|
{% if event.abstract %}
|
||
|
<p class="card-text">
|
||
|
{% if "<" in event.abstract %}
|
||
|
{{ event.abstract | safe }}
|
||
|
{% else %}
|
||
|
{{ event.abstract }}
|
||
|
{% endif %}
|
||
|
</p>
|
||
|
{% endif %}
|
||
|
|
||
|
{% if event.description %}
|
||
|
<p class="card-text">
|
||
|
{% if "<" in event.description %}
|
||
|
{{ event.description | safe }}
|
||
|
{% else %}
|
||
|
{{ event.description }}
|
||
|
{% endif %}
|
||
|
</p>
|
||
|
{% endif %}
|
||
|
|
||
|
<p class="card-text">
|
||
|
Speakers:
|
||
|
{% for p in event.people %}
|
||
|
<a href="{{ url_for("person", person_id=p.id) }}">{{ p.name }}</a>
|
||
|
{% endfor %}
|
||
|
</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
{% endfor %}
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|