Initial deploy setup
deploy / deploy (push) Canceled after 0s

This commit is contained in:
Jens
2026-07-21 14:00:00 +02:00
commit b8091e59bd
285 changed files with 27854 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
<!doctype html><html lang="nl"><body style="font-family:Arial,sans-serif;background:#f4f7fb;color:#152033;margin:0;padding:24px"><div style="max-width:720px;margin:auto;background:#fff;border-radius:18px;padding:28px"><p style="color:#4a62d8;font-weight:bold;text-transform:uppercase;letter-spacing:.08em">VacatureRadar</p><h1 style="margin:0 0 8px">Dagelijkse selectie</h1><p>{{ digest.strong_count }} sterke en {{ digest.possible_count }} mogelijke matches.</p>{% for score in digest.scores %}<div style="border:1px solid #dde3ee;border-radius:14px;padding:18px;margin:16px 0"><p style="margin:0;color:#4a62d8;font-weight:bold">{{ score.score|floatformat:0 }}/100</p><h2 style="margin:6px 0">{{ score.title }}</h2><p>{{ score.employer }} · {{ score.location }}</p>{% if score.positives %}<p><strong>Waarom:</strong> {{ score.positives|join:"; " }}</p>{% endif %}{% if score.concerns %}<p><strong>Aandachtspunt:</strong> {{ score.concerns.0 }}</p>{% endif %}<p><a href="{{ score.url }}">Open originele vacature</a></p></div>{% empty %}<p>Geen nieuwe aanbevelingen in deze digest.</p>{% endfor %}</div></body></html>
+14
View File
@@ -0,0 +1,14 @@
VacatureRadar — dagelijkse selectie
{{ digest.strong_count }} sterke matches
{{ digest.possible_count }} mogelijke matches
{% for score in digest.scores %}{{ score.title }} — {{ score.employer }}
Score {{ score.score|floatformat:0 }}/100 · {{ score.location }}
{% if score.positives %}Waarom: {{ score.positives|join:"; " }}{% endif %}
{% if score.concerns %}Aandachtspunt: {{ score.concerns.0 }}{% endif %}
{{ score.url }}
{% empty %}Geen nieuwe aanbevelingen in deze digest.
{% endfor %}
Open VacatureRadar voor feedback en sollicitatieopvolging.
+1
View File
@@ -0,0 +1 @@
<!doctype html><html lang="nl"><body style="font-family:Arial,sans-serif;background:#f4f7fb;color:#152033;margin:0;padding:24px"><div style="max-width:720px;margin:auto;background:#fff;border-radius:18px;padding:28px"><p style="color:#4a62d8;font-weight:bold;text-transform:uppercase;letter-spacing:.08em">VacatureRadar</p><h1 style="margin:0 0 8px">Herinnering</h1><p style="margin:0 0 16px;color:#0f1f3d">{{ reminder.job_title|default:"Vacature" }}</p><p style="margin:0 0 8px"><strong>Werkgever:</strong> {{ reminder.employer|default:"Onbekend" }}</p>{% if reminder.reminder_type == "closing" %}<p>Deze vacature sluit op: {{ reminder.valid_through }}</p>{% elif reminder.reminder_type == "follow_up" %}<p>Opvolgingsdatum: {{ reminder.follow_up_date }}</p><p>Status dossier: {{ reminder.job_status }}</p>{% elif reminder.reminder_type == "top_match" %}<p>Topmatch met score {{ reminder.score|floatformat:0 }}/100</p><p>Confidence: {{ reminder.confidence|floatformat:2 }}</p>{% endif %}<p><a href="{{ reminder.link }}">Open vacature</a></p></div></body></html>
+18
View File
@@ -0,0 +1,18 @@
VacatureRadar — {{ reminder.reminder_type|default:"herinnering" }}
{{ reminder.job_title|default:"Vacature" }}
{{ reminder.employer|default:"Onbekende werkgever" }}
{% if reminder.reminder_type == "closing" %}
Deze vacature sluit op: {{ reminder.valid_through }}.
{% elif reminder.reminder_type == "follow_up" %}
Opvolgingsdatum: {{ reminder.follow_up_date }}.
Status dossier: {{ reminder.job_status }}.
{% elif reminder.reminder_type == "top_match" %}
Topmatch gevonden met score {{ reminder.score|floatformat:0 }}/100
En confidence {{ reminder.confidence|floatformat:2 }}.
{% endif %}
Bron: {{ reminder.link }}
Open vacature in VacatureRadar om dossierstatus bij te werken.