forked from samuel-p/sp-codes.de
major improvements
added expenses and donations replaced some icons with svgs
This commit is contained in:
parent
c5b781fde1
commit
a5aa3cc014
41 changed files with 428 additions and 95 deletions
|
@ -1,10 +1,68 @@
|
|||
{
|
||||
"banktransfer": {
|
||||
"number": 5,
|
||||
"color": "success"
|
||||
[
|
||||
{
|
||||
"year": 2021,
|
||||
"donations": [
|
||||
{
|
||||
"date": "01.06.2021",
|
||||
"amount": 20,
|
||||
"via": "banktransfer",
|
||||
"from": "Rumo",
|
||||
"first": true
|
||||
},
|
||||
{
|
||||
"date": "26.04.2021",
|
||||
"amount": 8.96,
|
||||
"via": "banktransfer",
|
||||
"from": null,
|
||||
"first": false
|
||||
},
|
||||
{
|
||||
"date": "23.03.2021",
|
||||
"amount": 30,
|
||||
"via": "banktransfer",
|
||||
"from": null,
|
||||
"first": true
|
||||
},
|
||||
{
|
||||
"date": "19.02.2021",
|
||||
"amount": 20,
|
||||
"via": "banktransfer",
|
||||
"from": null,
|
||||
"first": true
|
||||
},
|
||||
{
|
||||
"date": "02.02.2021",
|
||||
"amount": 9.01,
|
||||
"via": "opencollective",
|
||||
"from": "Dennis H.",
|
||||
"first": true
|
||||
},
|
||||
{
|
||||
"date": "20.01.2021",
|
||||
"amount": 10,
|
||||
"via": "banktransfer",
|
||||
"from": null,
|
||||
"first": true
|
||||
},
|
||||
{
|
||||
"date": "17.01.2021",
|
||||
"amount": 4.41,
|
||||
"via": "opencollective",
|
||||
"from": "Michael Haak",
|
||||
"first": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"cash": {
|
||||
"number": 0,
|
||||
"color": "inactive"
|
||||
{
|
||||
"year": 2020,
|
||||
"donations": [
|
||||
{
|
||||
"date": "04.12.2020",
|
||||
"amount": 10,
|
||||
"via": "banktransfer",
|
||||
"from": null,
|
||||
"first": true
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
50
src/_data/expenses.json
Normal file
50
src/_data/expenses.json
Normal file
|
@ -0,0 +1,50 @@
|
|||
[
|
||||
{
|
||||
"name": {
|
||||
"en": "Websites",
|
||||
"de": "Webseiten"
|
||||
},
|
||||
"type": "Webhosting",
|
||||
"provider": "netcup",
|
||||
"amount": 1.99
|
||||
},
|
||||
{
|
||||
"name": "Diana",
|
||||
"type": "VPS",
|
||||
"provider": "Hetzner",
|
||||
"amount": 2.96
|
||||
},
|
||||
{
|
||||
"name": "Ceres",
|
||||
"type": "VPS",
|
||||
"provider": "netcup",
|
||||
"amount": 5.5
|
||||
},
|
||||
{
|
||||
"name": "Venus",
|
||||
"type": "VPS",
|
||||
"provider": "netcup",
|
||||
"amount": 3.33
|
||||
},
|
||||
{
|
||||
"name": "Luna",
|
||||
"type": "Root-Server",
|
||||
"provider": "netcup",
|
||||
"amount": 14
|
||||
},
|
||||
{
|
||||
"name": "Vesta",
|
||||
"type": "Root-Server",
|
||||
"provider": "netcup",
|
||||
"amount": 11.49
|
||||
},
|
||||
{
|
||||
"name": {
|
||||
"en": "Additional IPv4",
|
||||
"de": "Zusätzliche IPv4"
|
||||
},
|
||||
"type": "IPv4",
|
||||
"provider": "netcup",
|
||||
"amount": 1
|
||||
}
|
||||
]
|
|
@ -13,7 +13,7 @@
|
|||
{
|
||||
"id": "matrix",
|
||||
"name": "Matrix",
|
||||
"icon": "fas fa-comments",
|
||||
"si": "matrix",
|
||||
"url": "https://chat.sp-codes.de",
|
||||
"status": "https://matrix.sp-codes.de/_matrix/static/",
|
||||
"summary": {
|
||||
|
@ -24,7 +24,7 @@
|
|||
{
|
||||
"id": "jitsi",
|
||||
"name": "Jitsi Meet",
|
||||
"icon": "fas fa-users",
|
||||
"si": "jitsi",
|
||||
"url": "https://jitsi.sp-codes.de",
|
||||
"status": "https://jitsi.sp-codes.de",
|
||||
"summary": {
|
||||
|
@ -35,7 +35,7 @@
|
|||
{
|
||||
"id": "mastodon",
|
||||
"name": "Mastodon",
|
||||
"icon": "fab fa-mastodon",
|
||||
"si": "mastodon",
|
||||
"url": "https://social.sp-codes.de",
|
||||
"status": "https://social.sp-codes.de/health",
|
||||
"beta": true,
|
||||
|
@ -47,7 +47,7 @@
|
|||
{
|
||||
"id": "gitea",
|
||||
"name": "Gitea",
|
||||
"icon": "fas fa-code",
|
||||
"si": "gitea",
|
||||
"url": "https://git.sp-codes.de",
|
||||
"status": "https://git.sp-codes.de",
|
||||
"summary": {
|
||||
|
|
|
@ -38,5 +38,49 @@
|
|||
"maintenance": {
|
||||
"de": "Wartung",
|
||||
"en": "Maintenance"
|
||||
},
|
||||
"date": {
|
||||
"de": "Datum",
|
||||
"en": "Date"
|
||||
},
|
||||
"amount": {
|
||||
"de": "Betrag",
|
||||
"en": "Amount"
|
||||
},
|
||||
"via": {
|
||||
"de": "Via",
|
||||
"en": "Via"
|
||||
},
|
||||
"from": {
|
||||
"de": "Von",
|
||||
"en": "Form"
|
||||
},
|
||||
"banktransfer": {
|
||||
"de": "Überweisung",
|
||||
"en": "Bank transfer"
|
||||
},
|
||||
"total": {
|
||||
"de": "Gesamt",
|
||||
"en": "Total"
|
||||
},
|
||||
"name": {
|
||||
"de": "Name",
|
||||
"en": "Name"
|
||||
},
|
||||
"type": {
|
||||
"de": "Typ",
|
||||
"en": "Type"
|
||||
},
|
||||
"provider": {
|
||||
"de": "Anbieter",
|
||||
"en": "Provider"
|
||||
},
|
||||
"month": {
|
||||
"de": "Monat",
|
||||
"en": "Month"
|
||||
},
|
||||
"year": {
|
||||
"de": "Jahr",
|
||||
"en": "Year"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue