From 2c13b9b7c1c0485af4f18e852ce873e71aa5939a Mon Sep 17 00:00:00 2001 From: Diane Trout Date: Wed, 25 Mar 2009 19:12:43 +0000 Subject: [PATCH] Make the visiable names match how the "group" and "contact" names were being used. So "Name" is the person submitting the sample ans "contact" is now called "lab name" and mostly contains the PI or Lab manager name. --- htsworkflow/frontend/samples/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htsworkflow/frontend/samples/models.py b/htsworkflow/frontend/samples/models.py index 559eefe..19190ee 100644 --- a/htsworkflow/frontend/samples/models.py +++ b/htsworkflow/frontend/samples/models.py @@ -99,8 +99,8 @@ class Species(models.Model): ordering = ["scientific_name"] class Affiliation(models.Model): - name = models.CharField(max_length=256, db_index=True, verbose_name='Group Name') - contact = models.CharField(max_length=256, null=True, blank=True,verbose_name='Contact Name') + name = models.CharField(max_length=256, db_index=True, verbose_name='Name') + contact = models.CharField(max_length=256, null=True, blank=True,verbose_name='Lab Name') email = models.EmailField(null=True,blank=True) def __unicode__(self): -- 2.30.2