From: Diane Trout Date: Wed, 25 Mar 2009 19:12:43 +0000 (+0000) Subject: Make the visiable names match how the "group" and "contact" names were being used. X-Git-Tag: 0.2.0.2~5 X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=commitdiff_plain;h=2c13b9b7c1c0485af4f18e852ce873e71aa5939a 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. --- 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):