210 lines
14 KiB
HTML
210 lines
14 KiB
HTML
{% macro format_date(date_str) %}
|
||
{%- if date_str and '-' in date_str and date_str|length == 10 -%}
|
||
{{ date_str[8:10] }}.{{ date_str[5:7] }}.{{ date_str[0:4] }}
|
||
{%- else -%}
|
||
{{ date_str }}
|
||
{%- endif -%}
|
||
{% endmacro %}
|
||
<!doctype html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<title>Elpatrons Datumsrechner – Open Source Kalender- und Datumsberechnungen</title>
|
||
<meta name="description" content="Elpatrons Datumsrechner: Open Source Web-App für Kalender- und Datumsberechnungen. Tage, Werktage, Wochen, Monate, Kalenderwochen, Wochentage und mehr berechnen – werbefrei, trackingfrei, kostenlos.">
|
||
<meta name="keywords" content="Datum, Kalender, Datumsrechner, Werktage, Tage zählen, Kalenderwoche, Wochentag, Open Source, Python, Flask, kostenlos, werbefrei, trackingfrei, cookiefrei">
|
||
<meta property="og:title" content="Elpatrons Datumsrechner – Open Source Kalender- und Datumsberechnungen">
|
||
<meta property="og:description" content="Open Source Web-App für Kalender- und Datumsberechnungen. Werbefrei, trackingfrei, kostenlos.">
|
||
<meta property="og:type" content="website">
|
||
<meta property="og:url" content="https://codeberg.org/elpatron/datecalc">
|
||
<meta property="og:image" content="/static/logo.svg">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
||
<link rel="stylesheet" href="/static/style.css">
|
||
<link rel="manifest" href="/static/manifest.json">
|
||
<meta name="theme-color" content="#2563eb">
|
||
<script>
|
||
function setToday(id) {
|
||
const today = new Date().toISOString().split('T')[0];
|
||
document.getElementById(id).value = today;
|
||
}
|
||
function openAccordion(idx) {
|
||
document.querySelectorAll('.accordion-header').forEach((btn, i) => {
|
||
btn.classList.toggle('active', i === idx);
|
||
});
|
||
document.querySelectorAll('.accordion-content').forEach((el, i) => {
|
||
el.classList.toggle('active', i === idx);
|
||
});
|
||
}
|
||
document.addEventListener('DOMContentLoaded', function() {
|
||
openAccordion(parseInt("{{ active_idx|default(0) }}"));
|
||
});
|
||
if ('serviceWorker' in navigator) {
|
||
window.addEventListener('load', function() {
|
||
navigator.serviceWorker.register('/static/service-worker.js');
|
||
});
|
||
}
|
||
</script>
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
<div style="text-align:center; margin-bottom:1.2em;">
|
||
<div style="font-size:1.1em; font-style:italic; color:#64748b;">Elpatrons</div>
|
||
<h1 style="margin:0;">Datumsrechner</h1>
|
||
</div>
|
||
<div class="accordion">
|
||
<div class="accordion-item">
|
||
<button type="button" class="accordion-header header-tage" onclick="openAccordion(0)">
|
||
<span style="vertical-align:middle;display:inline-block;width:1.5em;">
|
||
<!-- Kalender mit Doppelpfeil -->
|
||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="3" y="5" width="18" height="16" rx="4" fill="#fff" stroke="#2563eb" stroke-width="2"/><rect x="3" y="5" width="18" height="4" rx="2" fill="#2563eb"/><rect x="6" y="2" width="2" height="4" rx="1" fill="#2563eb"/><rect x="16" y="2" width="2" height="4" rx="1" fill="#2563eb"/><path d="M8 15h8M8 15l2-2M8 15l2 2M16 15l-2-2M16 15l-2 2" stroke="#2563eb" stroke-width="1.5" stroke-linecap="round"/></svg>
|
||
</span>
|
||
Anzahl der Tage/Werktage zwischen zwei Daten
|
||
</button>
|
||
<div class="accordion-content">
|
||
<form method="post">
|
||
<label>Startdatum:<br>
|
||
<span class="date-row">
|
||
<input type="date" name="start1" id="start1">
|
||
<button type="button" class="today-btn" onclick="setToday('start1')">Heute</button>
|
||
</span>
|
||
</label>
|
||
<label>Enddatum:<br>
|
||
<span class="date-row">
|
||
<input type="date" name="end1" id="end1">
|
||
<button type="button" class="today-btn" onclick="setToday('end1')">Heute</button>
|
||
</span>
|
||
</label>
|
||
<label style="display:flex;align-items:center;gap:0.5em;margin-top:0.7em;">
|
||
<input type="checkbox" name="werktage" id="werktage" {% if request.form.get('werktage') %}checked{% endif %}>
|
||
Nur Werktage
|
||
</label>
|
||
<button name="action" value="tage_werktage" type="submit">Berechnen</button>
|
||
</form>
|
||
{% if tage is not none %}
|
||
<div class="result">
|
||
{% if request.form.get('werktage') %}
|
||
Anzahl der Werktage zwischen <b>{{ format_date(request.form.get('start1', '')) }}</b> und <b>{{ format_date(request.form.get('end1', '')) }}</b>: {{ tage }}
|
||
{% else %}
|
||
Anzahl der Tage zwischen <b>{{ format_date(request.form.get('start1', '')) }}</b> und <b>{{ format_date(request.form.get('end1', '')) }}</b>: {{ tage }}
|
||
{% endif %}
|
||
</div>
|
||
{% endif %}
|
||
</div>
|
||
</div>
|
||
<div class="accordion-item">
|
||
<button type="button" class="accordion-header header-wochentag" onclick="openAccordion(1)">
|
||
<span style="vertical-align:middle;display:inline-block;width:1.5em;">
|
||
<!-- Kalender mit W -->
|
||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="3" y="5" width="18" height="16" rx="4" fill="#fff" stroke="#2563eb" stroke-width="2"/><rect x="3" y="5" width="18" height="4" rx="2" fill="#2563eb"/><rect x="6" y="2" width="2" height="4" rx="1" fill="#2563eb"/><rect x="16" y="2" width="2" height="4" rx="1" fill="#2563eb"/><text x="12" y="17" text-anchor="middle" font-size="12" font-family="Segoe UI, Arial, sans-serif" fill="#2563eb" font-weight="bold">W</text></svg>
|
||
</span>
|
||
Wochentag eines Datums
|
||
</button>
|
||
<div class="accordion-content">
|
||
<form method="post">
|
||
<label>Datum:<br>
|
||
<span class="date-row">
|
||
<input type="date" name="datum3" id="datum3">
|
||
<button type="button" class="today-btn" onclick="setToday('datum3')">Heute</button>
|
||
</span>
|
||
</label>
|
||
<button name="action" value="wochentag" type="submit">Anzeigen</button>
|
||
</form>
|
||
{% if wochentag is not none %}
|
||
<div class="result">Wochentag von <b>{{ format_date(request.form.get('datum3', '')) }}</b>: {{ wochentag }}</div>
|
||
{% endif %}
|
||
</div>
|
||
</div>
|
||
<div class="accordion-item">
|
||
<button type="button" class="accordion-header header-kw-datum" onclick="openAccordion(2)">
|
||
<span style="vertical-align:middle;display:inline-block;width:1.5em;">
|
||
<!-- Kalender mit # -->
|
||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="3" y="5" width="18" height="16" rx="4" fill="#fff" stroke="#2563eb" stroke-width="2"/><rect x="3" y="5" width="18" height="4" rx="2" fill="#2563eb"/><rect x="6" y="2" width="2" height="4" rx="1" fill="#2563eb"/><rect x="16" y="2" width="2" height="4" rx="1" fill="#2563eb"/><text x="12" y="17" text-anchor="middle" font-size="13" font-family="Segoe UI, Arial, sans-serif" fill="#2563eb" font-weight="bold">#</text></svg>
|
||
</span>
|
||
Kalenderwoche eines Datums
|
||
</button>
|
||
<div class="accordion-content">
|
||
<form method="post">
|
||
<label>Datum:<br>
|
||
<span class="date-row">
|
||
<input type="date" name="datum6" id="datum6">
|
||
<button type="button" class="today-btn" onclick="setToday('datum6')">Heute</button>
|
||
</span>
|
||
</label>
|
||
<button name="action" value="kw_berechnen" type="submit">Kalenderwoche berechnen</button>
|
||
</form>
|
||
{% if kw_berechnen is not none %}
|
||
<div class="result">Kalenderwoche von <b>{{ format_date(request.form.get('datum6', '')) }}</b>: {{ kw_berechnen }}</div>
|
||
{% endif %}
|
||
</div>
|
||
</div>
|
||
<div class="accordion-item">
|
||
<button type="button" class="accordion-header header-kw" onclick="openAccordion(3)">
|
||
<span style="vertical-align:middle;display:inline-block;width:1.5em;">
|
||
<!-- Kalender mit Pfeil nach außen -->
|
||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="3" y="5" width="18" height="16" rx="4" fill="#fff" stroke="#2563eb" stroke-width="2"/><rect x="3" y="5" width="18" height="4" rx="2" fill="#2563eb"/><rect x="6" y="2" width="2" height="4" rx="1" fill="#2563eb"/><rect x="16" y="2" width="2" height="4" rx="1" fill="#2563eb"/><path d="M7 17l5-5 5 5" stroke="#2563eb" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><text x="12" y="12" text-anchor="middle" font-size="8" font-family="Segoe UI, Arial, sans-serif" fill="#2563eb" font-weight="bold">KW</text></svg>
|
||
</span>
|
||
Start-/Enddatum zu Kalenderwoche
|
||
</button>
|
||
<div class="accordion-content">
|
||
<form method="post">
|
||
<label>Jahr:<br>
|
||
<input type="number" name="jahr7" id="jahr7" min="1900" max="2100" style="width: 7em;">
|
||
</label>
|
||
<label>Kalenderwoche:<br>
|
||
<input type="number" name="kw7" id="kw7" min="1" max="53" style="width: 5em;">
|
||
</label>
|
||
<button name="action" value="kw_datum" type="submit">Start-/Enddatum berechnen</button>
|
||
</form>
|
||
{% if kw_datum is not none %}
|
||
<div class="result">Start-/Enddatum der KW <b>{{ request.form.get('kw7', '') }}</b> im Jahr <b>{{ request.form.get('jahr7', '') }}</b>: {{ kw_datum }}</div>
|
||
{% endif %}
|
||
</div>
|
||
</div>
|
||
<div class="accordion-item">
|
||
<button type="button" class="accordion-header header-plusminus" onclick="openAccordion(4)">
|
||
<span style="vertical-align:middle;display:inline-block;width:1.5em;">
|
||
<!-- Kalender mit ± -->
|
||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="3" y="5" width="18" height="16" rx="4" fill="#fff" stroke="#2563eb" stroke-width="2"/><rect x="3" y="5" width="18" height="4" rx="2" fill="#2563eb"/><rect x="6" y="2" width="2" height="4" rx="1" fill="#2563eb"/><rect x="16" y="2" width="2" height="4" rx="1" fill="#2563eb"/><text x="12" y="17" text-anchor="middle" font-size="16" font-family="Segoe UI, Arial, sans-serif" fill="#2563eb" font-weight="bold">±</text></svg>
|
||
</span>
|
||
Datum plus/minus X Tage/Wochen/Monate
|
||
</button>
|
||
<div class="accordion-content">
|
||
<form method="post">
|
||
<label>Datum:<br>
|
||
<span class="date-row">
|
||
<input type="date" name="datum_pm" id="datum_pm">
|
||
<button type="button" class="today-btn" onclick="setToday('datum_pm')">Heute</button>
|
||
</span>
|
||
</label>
|
||
<label>Anzahl:<br>
|
||
<input type="number" name="anzahl_pm" id="anzahl_pm" style="width: 6em;">
|
||
</label>
|
||
<span class="date-calc-row">
|
||
<label><input type="radio" name="richtung_pm" value="add" checked> addieren</label>
|
||
<label><input type="radio" name="richtung_pm" value="sub"> subtrahieren</label>
|
||
</span>
|
||
<span class="date-calc-row">
|
||
<label>Einheit:
|
||
<select name="einheit_pm" id="einheit_pm">
|
||
<option value="tage">Tage</option>
|
||
<option value="wochen">Wochen</option>
|
||
<option value="monate">Monate</option>
|
||
</select>
|
||
</label>
|
||
<label style="margin-left:1em;"><input type="checkbox" name="werktage_pm" id="werktage_pm"> Nur Werktage</label>
|
||
</span>
|
||
<button name="action" value="plusminus" type="submit">Berechnen</button>
|
||
</form>
|
||
{% if plusminus_result is not none %}
|
||
<div class="result">{{ plusminus_result }}</div>
|
||
{% endif %}
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<footer style="text-align:center; margin-top:2em; color:#64748b; font-size:0.98em; padding-bottom:1.5em;">
|
||
Dies ist ein werbe- und trackingfreier <a href="https://codeberg.org/elpatron/datecalc" target="_blank" style="color:#2563eb; text-decoration:underline;">Open Source Datumsrechner</a><br>
|
||
© 2025 <a href="mailto:elpatron@mailbox.org?subject=Datumsrechner" style="color:#2563eb; text-decoration:underline;">M. Busche</a>
|
||
</footer>
|
||
</body>
|
||
</html> |