diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2026-03-22 16:13:59 +0100 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2026-03-22 16:13:59 +0100 |
| commit | 1620fc15d1d21989fb38d9f3596cdf03f8535ff5 (patch) | |
| tree | fe16b79cba4b1105ccbc9c4ab16b4b606dd10950 /app/controllers/course | |
| parent | dda96cbbdf9237d90297ed1559f0a4d27713b2ec (diff) | |
implement logic that may collapse list, fixes #6380biest-6380
Diffstat (limited to 'app/controllers/course')
| -rw-r--r-- | app/controllers/course/overview.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/controllers/course/overview.php b/app/controllers/course/overview.php index 4325de8..e87417e 100644 --- a/app/controllers/course/overview.php +++ b/app/controllers/course/overview.php @@ -67,7 +67,9 @@ class Course_OverviewController extends AuthenticatedController $this->next_date = $this->course->getNextDate(); $this->first_date = $this->course->getFirstDate(); $show_link = $GLOBALS["perm"]->have_studip_perm('autor', $this->course_id) && $this->course->isToolActive('schedule'); - $this->times_rooms = $this->course->getAllDatesInSemester()->toHtml(); + $this->times_rooms = $this->course->getAllDatesInSemester()->toHtml( + as_collapsible_list: true + ); //Load lecturers: $lecturers = $this->course->getMembersWithStatus('dozent'); |
