diff options
Diffstat (limited to 'ctrack/caf')
-rw-r--r-- | ctrack/caf/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ctrack/caf/models.py b/ctrack/caf/models.py index 637ef92..2069612 100644 --- a/ctrack/caf/models.py +++ b/ctrack/caf/models.py @@ -76,4 +76,4 @@ class CAF(models.Model): def __str__(self): # Get the organisation and applicable system ass = ApplicableSystem.objects.filter(caf=self).first() - return f"CAF | {ass.organisation.name}" + return f"CAF | {ass.organisation.name}_v{self.version}" |