Skip to content
Snippets Groups Projects
Commit ea3e709e authored by Benjamin Hättasch's avatar Benjamin Hättasch
Browse files

Fix formation issue in simplified duration representation of AKSlot

Also use this representation in durations list of AK
parent 3e4ebb72
No related branches found
No related tags found
1 merge request!87AK Slides
......@@ -264,7 +264,7 @@ class AK(models.Model):
@property
def durations_list(self):
return ", ".join(str(slot.duration) for slot in self.akslot_set.all())
return ", ".join(str(slot.duration_simplified) for slot in self.akslot_set.all())
@property
def tags_list(self):
......
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