diff --git a/apps/main/models.py b/apps/main/models.py index 6f9e285..2b1267d 100644 --- a/apps/main/models.py +++ b/apps/main/models.py @@ -100,5 +100,7 @@ class Configuration(PolymorphicModel): db_table = 'db_configurations' def __unicode__(self): - return u'%s [%s]' % (self.experiment.name, self.device.name) + return u'[%s - %s]: %s' % (self.experiment.campaign.name, + self.experiment.name, + self.device.name) \ No newline at end of file diff --git a/apps/main/templates/base.html b/apps/main/templates/base.html index a3ad338..4101a9a 100644 --- a/apps/main/templates/base.html +++ b/apps/main/templates/base.html @@ -37,12 +37,12 @@