{% extends "base.html" %} {% block content %}

Stores

{% for store in stores %}

{{ store.name }}

For URLs starting with {{ store.url_prefix }}.

{% if session['email'] == config.ADMIN %} Edit Permanently Delete {% endif %}
{% endfor %}
{% if session['email'] == config.ADMIN %} Create new {% endif %}
{% endblock %}