aboutsummaryrefslogtreecommitdiff
path: root/templates/results.html
blob: c635a7512b080a85ed0a2e1f58e575eb272c60e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% if not from_js %}
<a href="{{ url_for('root') }}">clear search</a>
{% else %}
<a href="{{ savedlink }}">{{ savedlink }}</a>
{% endif %}
{# {% for r in results %}{% for store in r %}<div class="{{ store }} store"><h1>{{ store | capitalize }}</h1> #}
{% for r in results %}{% for store in r %}<div class="{{ store }} store"><h1><img class="storeimg" src="{{ url_for('static', filename = 'images/' + store + '.png') }}"/>{{ store | capitalize }}</h1>
{% for salepaper in r[store] %}<h2>{{ salepaper | safe }}</h2>
{% for grouping in r[store][salepaper] %}<h3>{{ grouping | safe }}</h3>
{% for coupon in r[store][salepaper][grouping] %}{{ coupon | safe }}<br/>{% endfor %}
{% endfor %}{% endfor %}
</div>{% endfor %}{% endfor %}
bgstack15