aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2020-03-04 20:35:23 +0000
committerMatthew Lemon <matt@matthewlemon.com>2020-03-04 20:35:23 +0000
commit94eebee8f6162b275b94f461873aeb87441e2bab (patch)
tree612331f3931fd706fc31beb335789132a464056f /ctrack
parent96a480adfa1124295d672a4dc6187960e8cbbd7e (diff)
appending version to caf name
Diffstat (limited to '')
-rw-r--r--ctrack/caf/models.py2
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}"