From 7a3d6655382598223c30be3ff9d92375650a0de2 Mon Sep 17 00:00:00 2001 From: "georg.sinn-schirwitz" Date: Sat, 30 Aug 2025 13:30:29 +0200 Subject: [PATCH] only show scrape button to logged in users --- web/templates/index.html | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/web/templates/index.html b/web/templates/index.html index fee4585..183acde 100644 --- a/web/templates/index.html +++ b/web/templates/index.html @@ -34,10 +34,12 @@ + {% if session.get('username') %}
+ {% endif %}
{% for job in jobs %} @@ -46,11 +48,6 @@

{{ job['posted_time'] }}

{{ job['region'] }} {{ job['keyword'] }} - {% if job.get('file_path_abs') or job.get('file_path') %} -
- Cached -
- {% endif %}
{% endfor %}