From aa24976abb583468057ce21d2f0ac1220960b783 Mon Sep 17 00:00:00 2001 From: Emanuele Date: Wed, 19 Nov 2025 19:06:30 +0100 Subject: [PATCH] fix hb description --- cntmanage/flightslot/models/hourbuildings.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cntmanage/flightslot/models/hourbuildings.py b/cntmanage/flightslot/models/hourbuildings.py index 5f36661..0e8fcee 100644 --- a/cntmanage/flightslot/models/hourbuildings.py +++ b/cntmanage/flightslot/models/hourbuildings.py @@ -63,6 +63,9 @@ class HourBuilding(models.Model): blank=True ) + def __str__(self): + return f"Hour Building: {self.aircraft}" + class HourBuildingLeg(models.Model): id = models.BigAutoField( primary_key=True