diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2020-03-04 20:35:23 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2020-03-04 20:35:23 +0000 |
commit | 94eebee8f6162b275b94f461873aeb87441e2bab (patch) | |
tree | 612331f3931fd706fc31beb335789132a464056f /ctrack/caf | |
parent | 96a480adfa1124295d672a4dc6187960e8cbbd7e (diff) |
appending version to caf name
Diffstat (limited to '')
-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}" |