diff --git a/cis/private/lehre/notenliste.php b/cis/private/lehre/notenliste.php
index 56fd4a36d..e7e7ae90f 100644
--- a/cis/private/lehre/notenliste.php
+++ b/cis/private/lehre/notenliste.php
@@ -417,10 +417,15 @@ else
$tblFoot .= "";
- $tbl .= $tblHead.$tblFoot.$tblBody;
+ if (!defined('CIS_NOTENLISTE_DURCHSCHNITT_ANZEIGEN') || (defined('CIS_NOTENLISTE_DURCHSCHNITT_ANZEIGEN') && CIS_NOTENLISTE_DURCHSCHNITT_ANZEIGEN))
+ {
+ $tbl .= $tblHead.$tblFoot.$tblBody;
+ $tbl .= "
| * | " . $p->t('tools/legendeNotendurchschnitt') . " |
";
+ $tbl .= "| ** | " . $p->t('tools/legendeGewichteterNotendurchschnitt') . " |
";
+ }
+ else
+ $tbl .= $tblHead.$tblBody;
- $tbl .= "| * | " . $p->t('tools/legendeNotendurchschnitt') . " |
";
- $tbl .= "| ** | " . $p->t('tools/legendeGewichteterNotendurchschnitt') . " |
";
if ($legende)
{
$tbl .= " | " . $p->t('tools/hinweistextMarkierung') . " |
";
diff --git a/config/global.config-default.inc.php b/config/global.config-default.inc.php
index 05da2cb94..dff96bc38 100644
--- a/config/global.config-default.inc.php
+++ b/config/global.config-default.inc.php
@@ -101,6 +101,9 @@ define('CIS_GESAMTNOTE_FREIGABEMAIL_NOTE', false);
// Gibt an ob in der Notenliste der Studierenden nur offizielle Noten oder alle angezeigt werden
define('CIS_NOTENLISTE_OFFIZIELL_ANZEIGEN', false);
+// Gibt an ob in der Notenliste der Durchschnitt und der gewichtete Durchschnitt angezeigt werden
+define('CIS_NOTENLISTE_DURCHSCHNITT_ANZEIGEN', true);
+
// Grenzwerte für Anwesenheit
define('FAS_ANWESENHEIT_ROT', 70);
define('FAS_ANWESENHEIT_GELB', 90);