From: Michael Tremer Date: Thu, 19 Nov 2020 10:58:44 +0000 (+0000) Subject: about: Add a section about the team X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0610dc2c773e0955a3ae4cb0584afc0c84d5d96c;p=ipfire.org.git about: Add a section about the team Signed-off-by: Michael Tremer --- diff --git a/src/templates/about.html b/src/templates/about.html index 3654829e..4d6fd93c 100644 --- a/src/templates/about.html +++ b/src/templates/about.html @@ -72,4 +72,54 @@ + +
+
+

{{ _("Meet The Team") }}

+ + {% set core_team = backend.groups.get_by_gid("core-team") %} + +
+ {% for account in sorted(core_team, key=lambda a: a.created_at) %} +
+
+
+ +
+
+ +
{{ account }}
+ + {% if account.description %} + {% module Markdown(account.description) %} + {% end %} +
+ {% end %} +
+ + {% set team = [ + a for a in backend.groups.get_by_gid("contributors") if not a in core_team + ] %} + + {% if team %} +
+ {% for account in sorted(team, key=lambda a: a.created_at) %} +
+
+
+ +
+ +
+
{{ account }}
+
+
+
+ {% end %} +
+ {% end %} +
+
{% end block %}