Skip to content
Snippets Groups Projects
Commit 24ab781f authored by Nadja Geisler's avatar Nadja Geisler :sunny:
Browse files

Merge branch 'improve-scheduling' into 'main'

Improve scheduling

See merge request !176
parents e2e2f912 78424c9a
No related branches found
No related tags found
No related merge requests found
......@@ -301,6 +301,7 @@ class AK(models.Model):
{self.owners_list}
{_('Interest')}: {self.interest}
{_("Requirements")}: {", ".join(str(r) for r in self.requirements.all())}
{_("Conflicts")}: {", ".join(str(c) for c in self.conflicts.all())}
{_("Prerequisites")}: {", ".join(str(p) for p in self.prerequisites.all())}
......
......@@ -343,7 +343,7 @@
</li>
</ul>
<div id="sidebarContent" class="tab-content">
<div class="tab-pane fade show active" id="unscheduled-slots">
<div class="tab-pane fade show active" id="unscheduled-slots" style="height: 80vh;overflow-y: scroll;">
{% regroup slots_unscheduled by ak.track as slots_unscheduled_by_track_list %}
{% for track_slots in slots_unscheduled_by_track_list %}
{% if track_slots.grouper %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment