Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions REUSE.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2081,6 +2081,19 @@ SPDX-FileCopyrightText = [
"2023 Jonas Huber <https://github.com/jh-RLI> © Reiner Lemoine Institut",
]

[[annotations]]
path = "base/templates/base/oefamily-sc.html"
precedence = "override"
SPDX-License-Identifier = "AGPL-3.0-or-later"
SPDX-FileCopyrightText = [
"2020 Jonas Huber <https://github.com/jh-RLI> © Reiner Lemoine Institut",
"2020 Ludwig Hülk <https://github.com/Ludee> © Reiner Lemoine Institut",
"2021 Christian Hofmann <https://github.com/christian-rli> © Reiner Lemoine Institut © Reiner Lemoine Institut",
"2022 Christian Winger <https://github.com/wingechr> © Öko-Institut e.V.",
"2023 Jonas Huber <https://github.com/jh-RLI> © Reiner Lemoine Institut",
]


[[annotations]]
path = "ontology/templates/ontology/about.html"
precedence = "override"
Expand Down
6 changes: 4 additions & 2 deletions base/templates/base/_header.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@
<span class="navbar-toggler-icon"></span>
</button>
<a class="navbar-brand" href="{% url 'base:home' %}">
<img style="width:45px;
height: 45px"
<img width="45"
height="45"
alt="logo"
src="{% static 'OpenEnergyFamily_Logo_OpenEnergyPlatform_untitled_white.svg' %}" />
</a>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
Expand Down Expand Up @@ -134,6 +135,7 @@
aria-expanded="false">About</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownAbout">
<a class="dropdown-item" href="{% url 'base:about' %}">Overview</a>
<a class="dropdown-item" href="{% url 'base:oefamily-sc' %}">Open Energy Family Steering Committee</a>
<a class="dropdown-item"
href="{{ EXTERNAL_URLS.compendium }}"
target="_blank"><i class="fas fa-external-link-alt"></i> Compendium</a>
Expand Down
26 changes: 26 additions & 0 deletions base/templates/base/oefamily-sc.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{% extends "base/base.html" %}
{% load django_bootstrap5 %}
{% load static %}
{% block site-header %}
<div class="main-header">
<h1 class="main-header__title">Open Energy Family Steering Committee</h1>
</div>
{% endblock site-header %}
{% block main-content-body %}
<br />
<h3 id="oeo-sc">What is the Steering Committee?</h3>
<p>The OEFamily-SC is responsible for the overall development and strategic direction of the Open Energy Family framework.
The committee works closely with the core development team to ensure that the framework meets the needs of its users and
remains aligned with the goals of the project. It meets regularly via conference calls and in-person meetings to exchange
information and review planned and completed tasks.</p>
<h3 id="oeo-sc-members">Who is involved?</h3>
<p>The Steering Committee is coordinated by the NFDI4energy project team. The members are:

</p>
<ul>
<li>
TODO_NAME -
<a href="{{ EXTERNAL_URLS.TODO }}">TODO_ORGANISATION</a>
</li>
</ul>
{% endblock main-content-body %}
8 changes: 7 additions & 1 deletion base/urls.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""
__license__ = """
SPDX-FileCopyrightText: 2025 Christian Winger <https://github.com/wingechr> © Öko-Institut e.V.
SPDX-FileCopyrightText: 2025 Jonas Huber <https://github.com/jh-RLI> © Reiner Lemoine Institut
SPDX-FileCopyrightText: 2025 Martin Glauer <https://github.com/MGlauer> © Otto-von-Guericke-Universität Magdeburg
Expand All @@ -9,6 +9,7 @@
""" # noqa: 501

from django.urls import path, re_path
from django.views.generic import TemplateView

from base.views import (
AboutPageView,
Expand All @@ -26,6 +27,11 @@
path("", WelcomeView.as_view(), name="home"),
re_path(r"^robots.txt$", robot_view, name="robots"),
re_path(r"^about/$", AboutPageView.as_view(), name="about"),
re_path(
r"^oefamily-sc/$",
TemplateView.as_view(template_name="base/oefamily-sc.html"),
name="oefamily-sc",
),
re_path(
r"^about/project-detail/(?P<project_id>[\w\-]+)/$",
AboutProjectDetailView.as_view(),
Expand Down
Loading