diff --git a/ccdb/collections_ccdb/migrations/0004_collections_ordering.py b/ccdb/collections_ccdb/migrations/0004_collections_ordering.py new file mode 100644 index 0000000..cf4f18f --- /dev/null +++ b/ccdb/collections_ccdb/migrations/0004_collections_ordering.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('collections_ccdb', '0003_collections_ordering'), + ] + + operations = [ + migrations.AlterModelOptions( + name='adfgpermit', + options={'ordering': ['sort_order'], 'verbose_name': 'ADFG Permit'}, + ), + ] diff --git a/ccdb/collections_ccdb/models.py b/ccdb/collections_ccdb/models.py index 9148386..df61e55 100644 --- a/ccdb/collections_ccdb/models.py +++ b/ccdb/collections_ccdb/models.py @@ -55,6 +55,7 @@ class ADFGPermit(models.Model): class Meta: ordering = ['sort_order'] + verbose_name = 'ADFG Permit' class Collection(models.Model): diff --git a/ccdb/experiments/migrations/0007_treatment_replicates_display.py b/ccdb/experiments/migrations/0007_treatment_replicates_display.py new file mode 100644 index 0000000..cc8581f --- /dev/null +++ b/ccdb/experiments/migrations/0007_treatment_replicates_display.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('experiments', '0006_experiment_collections'), + ] + + operations = [ + migrations.AlterModelOptions( + name='alivedeadcount', + options={'verbose_name': 'Alive-dead Count'}, + ), + migrations.AddField( + model_name='treatmentreplicate', + name='display_name', + field=models.CharField(editable=False, max_length=255, default='x'), + preserve_default=False, + ), + ] diff --git a/ccdb/experiments/models.py b/ccdb/experiments/models.py index 6ae8b29..e981ffb 100644 --- a/ccdb/experiments/models.py +++ b/ccdb/experiments/models.py @@ -81,10 +81,16 @@ class TreatmentReplicate(models.Model): setup_sample_size = models.IntegerField(blank=True, null=True) mass_g = models.FloatField(blank=True, null=True) flaw = models.ForeignKey(Flaw, blank=True, null=True) + display_name = models.CharField(max_length=255, editable=False) + + def save(self, *args, **kwargs): + self.display_name = "{}_{}_{}_{}".format(self.treatment, + self.setup_date.date(), self.name, + self.setup_sample_size) + super(TreatmentReplicate, self).save(*args, **kwargs) def __str__(self): - return "{} {} {} {}".format(self.treatment, self.name, - self.setup_date, self.setup_sample_size) + return self.display_name class Meta: unique_together = ('treatment', 'name', 'setup_date', 'setup_time') @@ -100,3 +106,6 @@ class AliveDeadCount(models.Model): def __str__(self): return "{}".format(self.status_date) + + class Meta: + verbose_name = 'Alive-dead Count'