Updated frontend and changed a little backend

Added svg icons to the applications. Frontend will display the icon by name of [id].[icon_filetype] which defaults to svg. Able to set to other filetypes. Changed the frontend to center the application
This commit is contained in:
2025-08-31 13:31:15 +02:00
parent 7cb07691bb
commit f2a006b397
13 changed files with 43 additions and 9 deletions

View File

@@ -9,7 +9,7 @@ class service:
public: bool
error: Optional[str]
ping: Optional[int]
icon_filetype: Optional[str]
icon_filetype: str
def __init__(
self,
@@ -17,7 +17,7 @@ class service:
url: str = "",
label: str = "",
public: bool = True,
icon_filetype: Optional[str] = None,
icon_filetype: str = "svg",
):
self.id = id
self.url = url