Skip to content

Instantly share code, notes, and snippets.

@rupesh2017
Created August 6, 2018 14:06
Show Gist options
  • Save rupesh2017/a148fa6d3aab2a705e78fee1b1af2d6e to your computer and use it in GitHub Desktop.
Save rupesh2017/a148fa6d3aab2a705e78fee1b1af2d6e to your computer and use it in GitHub Desktop.
{% extends "layout.html" %}
{% block heading %}found {% endblock %}
{% block body %}
<ul>
{% for author in authors %}
<li>
<a href="{{url_for('sbook',book_id=author.id)}}">
{{author.title}}
</a>
</li>
{% endfor %}
</ul>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment