built ui for default due time

This commit is contained in:
2023-07-25 22:14:28 -06:00
parent a8221ccb5f
commit 4d083c8fe6
11 changed files with 240 additions and 39 deletions

View File

@@ -40,17 +40,20 @@ else
<div class="row">
<div class="col">
<div class="col overflow-y-auto border rounded " style="max-height: 95vh;">
@if (planner.LocalCourse != null)
{
@foreach (var month in SemesterPlanner.GetMonthsBetweenDates(planner.LocalCourse.StartDate, planner.LocalCourse.EndDate))
{
<MonthDetail Month="month" />
<hr />
}
<div class="py-2">
@foreach (var month in SemesterPlanner.GetMonthsBetweenDates(planner.LocalCourse.StartDate, planner.LocalCourse.EndDate))
{
<MonthDetail Month="month" />
<hr />
}
</div>
}
</div>
<div class="col-4">
<div class="col-4 overflow-y-auto" style="max-height: 95vh;">
<Modules />
</div>
</div>