templates/talks.html

templates/talks.html

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">

<a href="{{ url_for('new_talk') }}" class="btn btn-lg btn-primary">Create New Talk</a>

<h1>My Talks</h1>

{% for talk in talks %}
  <h2>{{ talk.id }}</h2>
  <p>{{ talk.title }}</p>
  <small>submitted on {{ talk.created_at }}</small>
{% endfor %}