Improvements

This commit is contained in:
Edward Betts 2023-09-15 23:34:41 +05:30
parent 4e5ee195dd
commit a0df624f16
14 changed files with 1021 additions and 59 deletions

36
templates/top_events.html Normal file
View file

@ -0,0 +1,36 @@
{% extends "base.html" %}
{% block title %}Conference archive{% endblock %}
{% block content %}
<div class="container">
<div class="row">
<h1>Conference archive</h1>
<p><a href="{{ url_for("index") }}">home</a></p>
<h3>Top events</h3>
<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">
</div>
<button type="submit" class="btn btn-primary">Search</button>
</form>
<ul>
{% for event_title, count in top_events %}
<li>
<a href="{{ url_for("events_page", q=event_title) }}">{{ event_title }}</a>
({{ count }})
</li>
{% endfor %}
</ul>
</div>
</div>
{% endblock %}