diff --git a/app/config/credits.json b/app/config/credits.json index 4b5c46a1..b85d8cb1 100644 --- a/app/config/credits.json +++ b/app/config/credits.json @@ -7,7 +7,10 @@ "loc": "Atlanta, GA", "tags": [ "Staff", - "Developer", + [ + "Developer", + "https://gitlab.com/Ptarrant1" + ], "Creator" ], "blurb": "For best results, apply a thin layer of Phillip to code, cyber security, and parenthood for maximum effectiveness. Phillip often spends too much time with his chickens.", @@ -31,7 +34,10 @@ "loc": "Midwest, USA", "tags": [ "Staff", - "Developer", + [ + "Developer", + "https://gitlab.com/computergeek125" + ], "Project Manager" ], "blurb": "Sysadmin for work and sysadmin for fun (avid homelabber). He enjoys a good tech tangent and gaming.", @@ -43,7 +49,10 @@ "loc": "East Coast, USA", "tags": [ "Staff", - "Developer", + [ + "Developer", + "https://gitlab.com/amcmanu3" + ], "Support Manager" ], "blurb": "His interests include Linux, gaming, and helping others. When he's able to unplug he enjoys biking, hiking, and playing soccer.", @@ -55,7 +64,10 @@ "loc": "Midwest, USA", "tags": [ "Staff", - "Developer", + [ + "Developer", + "https://gitlab.com/xithical" + ], null ], "blurb": "Having sold his soul to the IT administration gods many eons ago, you can usually find him working, going home to do work, or continuing to work in the support Discord.", @@ -67,7 +79,10 @@ "loc": "Central, UK", "tags": [ "Staff", - "Developer", + [ + "Developer", + "https://gitlab.com/MCgamin1738" + ], null ], "blurb": "His interests include learning, Linux, and programming. He loves pentesting apps and gaming.", @@ -79,7 +94,10 @@ "loc": null, "tags": [ "Staff", - "Developer", + [ + "Developer", + "https://gitlab.com/Silversthorn" + ], null ], "blurb": "Often in his cave, he sometimes goes out to help or do silly jokes. He's an IT clown (not the film), but seriously do the job when it's needed.", @@ -91,7 +109,10 @@ "loc": "Helsinki, FI", "tags": [ "Staff", - "Developer", + [ + "Developer", + "https://gitlab.com/LukasDoesDev" + ], null ], "blurb": "Lukas enjoys bashing his head at the table while his code does not work", @@ -103,7 +124,10 @@ "loc": "Scotland, UK", "tags": [ "Staff", - "Developer", + [ + "Developer", + "https://gitlab.com/Zedifus" + ], "DevOps" ], "blurb": "A Streamer, who is currently working in the insurance industry, self-teaching software development & DevOps, with the hopes of a career change! Enjoys playing games and has a sassy cat called Eve.", @@ -143,7 +167,10 @@ "loc": "East Coast, AU", "tags": [ "Staff", - "Developer", + [ + "Developer", + "https://gitlab.com/kevdagoat" + ], "HOD" ], "blurb": "His interests include Linux, programming, and goats of course. He enjoys building APIs, K8s, and geeking over video cards.", diff --git a/app/frontend/templates/panel/credits.html b/app/frontend/templates/panel/credits.html index fc09f3fc..d2d7540e 100644 --- a/app/frontend/templates/panel/credits.html +++ b/app/frontend/templates/panel/credits.html @@ -64,7 +64,11 @@ {{ person['tags'][0] }} {% end %} {% if person['tags'][1] %} - {{ person['tags'][1] }} + {% if type(person['tags'][1]) is list %} + {{ person['tags'][1][0] }} + {% else %} + {{ person['tags'][1] }} + {% end %} {% end %} {% if person['tags'][2] %} {% if type(person['tags'][2]) is list %} @@ -129,7 +133,11 @@ {{ person['tags'][0] }} {% end %} {% if person['tags'][1] %} - {{ person['tags'][1] }} + {% if type(person['tags'][1]) is list %} + {{ person['tags'][1][0] }} + {% else %} + {{ person['tags'][1] }} + {% end %} {% end %} {% if person['tags'][2] %} {% if type(person['tags'][2]) is list %} @@ -195,7 +203,11 @@ {{ person['tags'][0] }} {% end %} {% if person['tags'][1] %} - {{ person['tags'][1] }} + {% if type(person['tags'][1]) is list %} + {{ person['tags'][1][0] }} + {% else %} + {{ person['tags'][1] }} + {% end %} {% end %} {% if person['tags'][2] %} {% if type(person['tags'][2]) is list %}