diff options
author | B. Stack <bgstack15@gmail.com> | 2022-09-09 15:17:58 -0400 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2022-09-09 15:17:58 -0400 |
commit | 6d04ba74279e3e8011a60bde17b2ae4e2a752fa0 (patch) | |
tree | ce9aa02264b7fc98e507f34b1694e7794e8f9095 /templates/results.html | |
parent | use XDG_CACHE_HOME correctly (diff) | |
download | coupons-6d04ba74279e3e8011a60bde17b2ae4e2a752fa0.tar.gz coupons-6d04ba74279e3e8011a60bde17b2ae4e2a752fa0.tar.bz2 coupons-6d04ba74279e3e8011a60bde17b2ae4e2a752fa0.zip |
add web app
Diffstat (limited to 'templates/results.html')
-rw-r--r-- | templates/results.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/results.html b/templates/results.html new file mode 100644 index 0000000..c635a75 --- /dev/null +++ b/templates/results.html @@ -0,0 +1,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 %} |