{% extends "base.html" %} {% set active_page = "artists" %} {% import 'bootstrap/wtf.html' as wtf %} {% block app_content %}

Artists

{% for artist in artists %}
{{ artist.name }}

{{ artist.hometown }}

{% endfor %}
{% endblock %}