Files
scenar-creator/app/static/sample.json
Martin Sukany 0a694ce63a
Some checks failed
Build & Push Docker / build (push) Has been cancelled
feat: přidáno URL pole pro bloky – klikatelný odkaz v PDF
- Block model: nové volitelné pole 'url' (Optional[str])
- Frontend: URL input v modálu pro přidání/editaci bloku
- PDF generátor: c.linkURL() – celý blok je klikatelný odkaz
- sample.json: ukázkový blok s URL
- index.html: dokumentace URL pole
- .github/copilot-instructions.md: přidány Copilot instrukce
2026-03-14 19:10:13 +01:00

105 lines
3.5 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"version": "1.0",
"event": {
"title": "Zimní výjezd oddílu",
"subtitle": "Víkendový zážitkový kurz pro mladé",
"date_from": "2026-03-01",
"date_to": "2026-03-02",
"date": "2026-03-01",
"location": "Chata Horní Lhota"
},
"program_types": [
{ "id": "morning", "name": "Ranní program", "color": "#F97316" },
{ "id": "main", "name": "Hlavní program", "color": "#3B82F6" },
{ "id": "rest", "name": "Odpočinek / jídlo", "color": "#22C55E" },
{ "id": "evening", "name": "Večerní program", "color": "#8B5CF6" }
],
"blocks": [
{
"id": "d1_b1", "date": "2026-03-01",
"start": "08:00", "end": "08:30",
"title": "Budíček a rozcvička", "type_id": "morning",
"responsible": "Kuba", "notes": "Venkovní rozcvička"
},
{
"id": "d1_b2", "date": "2026-03-01",
"start": "08:30", "end": "09:00",
"title": "Snídaně", "type_id": "rest",
"responsible": "Kuchyň", "notes": null
},
{
"id": "d1_b3", "date": "2026-03-01",
"start": "09:00", "end": "11:00",
"title": "Stopovací hra v lese", "type_id": "main",
"responsible": "Lucka", "notes": "4 skupiny",
"url": "https://example.com/stopovaci-hra"
},
{
"id": "d1_b4", "date": "2026-03-01",
"start": "11:00", "end": "11:15",
"title": "Svačina", "type_id": "rest",
"responsible": null, "notes": null
},
{
"id": "d1_b5", "date": "2026-03-01",
"start": "11:15", "end": "13:00",
"title": "Stavba přístřešků", "type_id": "main",
"responsible": "Petr", "notes": "Soutěž"
},
{
"id": "d1_b6", "date": "2026-03-01",
"start": "13:00", "end": "14:30",
"title": "Oběd a polední klid", "type_id": "rest",
"responsible": "Kuchyň", "notes": "Guláš"
},
{
"id": "d1_b7", "date": "2026-03-01",
"start": "14:30", "end": "17:00",
"title": "Orientační běh", "type_id": "main",
"responsible": "Honza", "notes": "Trasa 3 km"
},
{
"id": "d1_b8", "date": "2026-03-01",
"start": "17:00", "end": "18:00",
"title": "Workshopy", "type_id": "morning",
"responsible": "Lucka + Petr", "notes": "Uzlování / Orientace"
},
{
"id": "d1_b9", "date": "2026-03-01",
"start": "18:00", "end": "19:00",
"title": "Večeře", "type_id": "rest",
"responsible": "Kuchyň", "notes": null
},
{
"id": "d1_b10", "date": "2026-03-01",
"start": "19:00", "end": "21:30",
"title": "Noční hra Světlušky", "type_id": "evening",
"responsible": "Honza + Kuba", "notes": "Čelovky, reflexní pásky"
},
{
"id": "d2_b1", "date": "2026-03-02",
"start": "08:00", "end": "09:00",
"title": "Snídaně + balení", "type_id": "rest",
"responsible": "Kuchyň", "notes": null
},
{
"id": "d2_b2", "date": "2026-03-02",
"start": "09:00", "end": "11:30",
"title": "Závěrečná hra Poklad", "type_id": "main",
"responsible": "Lucka", "notes": "Finálová aktivita víkendu"
},
{
"id": "d2_b3", "date": "2026-03-02",
"start": "11:30", "end": "12:30",
"title": "Oběd + vyhodnocení", "type_id": "rest",
"responsible": "Všichni", "notes": "Ceny pro vítěze"
},
{
"id": "d2_b4", "date": "2026-03-02",
"start": "12:30", "end": "14:00",
"title": "Odjezd domů", "type_id": "morning",
"responsible": "Martin", "notes": "Autobus 13:45"
}
]
}