38 lines
950 B
HTML
38 lines
950 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block title %}Conference archive{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div class="container">
|
||
|
<div class="row">
|
||
|
<h1>Conference archive</h1>
|
||
|
|
||
|
<form action="{{ url_for("events_page") }}">
|
||
|
<div class="mb-3">
|
||
|
<label for="q" class="form-label">event</label>
|
||
|
<input type="text" class="form-control" name="q" id="q" value="{{ search_for }}">
|
||
|
</div>
|
||
|
<button type="submit" class="btn btn-primary">Search</button>
|
||
|
</form>
|
||
|
|
||
|
<p>Found {{ q.count() }} events matching '{{ search_for }}'</p>
|
||
|
|
||
|
<ul>
|
||
|
{% for item in q %}
|
||
|
<li>
|
||
|
<a href="{{ url_for("event_page", event_id=item.id) }}">{{ item.title }}</a>
|
||
|
—
|
||
|
{{ item.conference.title }}
|
||
|
—
|
||
|
{% for p in item.people %}
|
||
|
<a href="{{ url_for("person", person_id=p.id) }}">{{ p.name }}</a>
|
||
|
{% endfor %}
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|
||
|
|
||
|
|