Skip to content

Commit d5737ad

Browse files
authored
Merge pull request #2198 from OpenEnergyPlatform/issue-2089
page for OE Family Steering Committee
2 parents 80ecb7a + c0742cc commit d5737ad

File tree

4 files changed

+64
-3
lines changed

4 files changed

+64
-3
lines changed

REUSE.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2081,6 +2081,19 @@ SPDX-FileCopyrightText = [
20812081
"2023 Jonas Huber <https://github.com/jh-RLI> © Reiner Lemoine Institut",
20822082
]
20832083

2084+
[[annotations]]
2085+
path = "base/templates/base/oefamily-sc.html"
2086+
precedence = "override"
2087+
SPDX-License-Identifier = "AGPL-3.0-or-later"
2088+
SPDX-FileCopyrightText = [
2089+
"2020 Jonas Huber <https://github.com/jh-RLI> © Reiner Lemoine Institut",
2090+
"2020 Ludwig Hülk <https://github.com/Ludee> © Reiner Lemoine Institut",
2091+
"2021 Christian Hofmann <https://github.com/christian-rli> © Reiner Lemoine Institut © Reiner Lemoine Institut",
2092+
"2022 Christian Winger <https://github.com/wingechr> © Öko-Institut e.V.",
2093+
"2023 Jonas Huber <https://github.com/jh-RLI> © Reiner Lemoine Institut",
2094+
]
2095+
2096+
20842097
[[annotations]]
20852098
path = "ontology/templates/ontology/about.html"
20862099
precedence = "override"

base/templates/base/_header.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99
<span class="navbar-toggler-icon"></span>
1010
</button>
1111
<a class="navbar-brand" href="{% url 'base:home' %}">
12-
<img style="width:45px;
13-
height: 45px"
12+
<img width="45"
13+
height="45"
14+
alt="logo"
1415
src="{% static 'OpenEnergyFamily_Logo_OpenEnergyPlatform_untitled_white.svg' %}" />
1516
</a>
1617
<div class="collapse navbar-collapse" id="navbarSupportedContent">
@@ -134,6 +135,7 @@
134135
aria-expanded="false">About</a>
135136
<div class="dropdown-menu" aria-labelledby="navbarDropdownAbout">
136137
<a class="dropdown-item" href="{% url 'base:about' %}">Overview</a>
138+
<a class="dropdown-item" href="{% url 'base:oefamily-sc' %}">Open Energy Family Steering Committee</a>
137139
<a class="dropdown-item"
138140
href="{{ EXTERNAL_URLS.compendium }}"
139141
target="_blank"><i class="fas fa-external-link-alt"></i> Compendium</a>
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{% extends "base/base.html" %}
2+
{% load django_bootstrap5 %}
3+
{% load static %}
4+
{% block site-header %}
5+
<div class="main-header">
6+
<h1 class="main-header__title">Open Energy Family Steering Committee</h1>
7+
</div>
8+
{% endblock site-header %}
9+
{% block main-content-body %}
10+
<br />
11+
<h3 id="oeo-sc">What is the Steering Committee?</h3>
12+
<p>
13+
The OEFamily-SC is responsible for the overall development and strategic direction of the Open Energy Family framework.
14+
The committee works closely with the core development team to ensure that the framework meets the needs of its users and
15+
remains aligned with the goals of the project. It meets regularly via conference calls and in-person meetings to exchange
16+
information and review planned and completed tasks.
17+
</p>
18+
<h3 id="oeo-sc-members">Who is involved?</h3>
19+
<p>
20+
The Steering Committee is coordinated by the NFDI4energy project team. The members are:
21+
</p>
22+
<ul>
23+
<li>Alexander Rakic (FZ Jülich)</li>
24+
<li>Astrid Nieße (Uni Oldenburg)</li>
25+
<li>Berit Müller (Deutsche Gesellschaft Sonnenenergie)</li>
26+
<li>Christian Winger (Öko-Institut)</li>
27+
<li>Carsten Hoyer-Klick (DLR)</li>
28+
<li>Gerald Boogaart (TU Freiberg)</li>
29+
<li>Hannah Förster (Öko-Institut)</li>
30+
<li>Sebastian Hellmann (Uni Leipzig)</li>
31+
<li>Daniel Huppmann (IIASA)</li>
32+
<li>Jonas Huber (RLI)</li>
33+
<li>Ludwig Hülk (RLI)</li>
34+
<li>Mirjam Stappel (Uni Osnabrück)</li>
35+
<li>Oliver Werth (OFFIS)</li>
36+
<li>Robbie Morrison</li>
37+
<li>Stephan Ferenz (Uni Oldenburg, OFFIS)</li>
38+
<li>Till Mossakowski (Uni Osnabrück)</li>
39+
</ul>
40+
{% endblock main-content-body %}

base/urls.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""
1+
__license__ = """
22
SPDX-FileCopyrightText: 2025 Christian Winger <https://github.com/wingechr> © Öko-Institut e.V.
33
SPDX-FileCopyrightText: 2025 Jonas Huber <https://github.com/jh-RLI> © Reiner Lemoine Institut
44
SPDX-FileCopyrightText: 2025 Martin Glauer <https://github.com/MGlauer> © Otto-von-Guericke-Universität Magdeburg
@@ -9,6 +9,7 @@
99
""" # noqa: 501
1010

1111
from django.urls import path, re_path
12+
from django.views.generic import TemplateView
1213

1314
from base.views import (
1415
AboutPageView,
@@ -26,6 +27,11 @@
2627
path("", WelcomeView.as_view(), name="home"),
2728
re_path(r"^robots.txt$", robot_view, name="robots"),
2829
re_path(r"^about/$", AboutPageView.as_view(), name="about"),
30+
re_path(
31+
r"^oefamily-sc/$",
32+
TemplateView.as_view(template_name="base/oefamily-sc.html"),
33+
name="oefamily-sc",
34+
),
2935
re_path(
3036
r"^about/project-detail/(?P<project_id>[\w\-]+)/$",
3137
AboutProjectDetailView.as_view(),

0 commit comments

Comments
 (0)