DalgoT4D / dalgo-admin-old

Administrative web console for Dalgo
GNU Affero General Public License v3.0
4 stars 11 forks source link

Add infra overview page #18

Closed amansgith closed 9 months ago

amansgith commented 9 months ago

Fixes #5

Added Infrastructure Overview Page

Having 4 cards showing :

Screenshots

Desktop View

ss3

Mobile View

ss5
amansgith commented 9 months ago

I have added everything as per the requirements Thanks for allowing me to work on this

fatchat commented 9 months ago

@amansgith i'm going to make a small change and then merge your PR

the change is in the function infra_info, i'm changing

file_path = '..\dalgo_admin\data\mock.json' 

to

file_path = settings.BASE_DIR / "data" / "mock.json"

And now that file_path is no longer a str but instead a PosixPath, i removed the file_path.endswith('.json') condition in read_file

rest looks nice, thank you