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
Branches
No related tags found
No related merge requests found
......@@ -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.
Please register or to comment