Holidays 2023 in PL

main
kry008 2023-08-21 10:50:54 +02:00
parent 8841df2b6b
commit f1e5fa728c
2 changed files with 41 additions and 3 deletions

View File

@ -13,6 +13,30 @@ A simple application to manage attendance lists
1. Add whole timeframes in one click 1. Add whole timeframes in one click
1. Counting days of remote work 1. Counting days of remote work
## db.sql
Holidays that occur in Poland are added to the db.sql file. If you want to replace it with your country, edit it as follows: (lines form **77**)
```sql
INSERT INTO
`dniwolne` (`id`, `data`, `nazwaSwieta`, `aktywne`)
VALUES
(
'YYYY-MM-DD',
'Event 1',
1
),
(
'YYYY-MM-DD',
'Event 2',
1
),
...
(
'YYYY-MM-DD',
'Event N',
1
);
```
## TODO ## TODO
## Licence ## Licence

20
db.sql
View File

@ -78,9 +78,23 @@ INSERT INTO
`dniwolne` (`id`, `data`, `nazwaSwieta`, `aktywne`) `dniwolne` (`id`, `data`, `nazwaSwieta`, `aktywne`)
VALUES VALUES
( (
1, '2023-11-05',
'2023-08-15', 'Wszystkich Świętych',
'Wniebowzięcie Najświętszej Maryi Panny', 1
),
(
'2023-11-11',
'Narodowe Święto Niepodległości',
1
),
(
'2023-12-25',
'pierwszy dzień Bożego Narodzenia',
1
),
(
'2023-12-26',
'drugi dzień Bożego Narodzenia',
1 1
); );