Make the visiable names match how the "group" and "contact" names were being used.
authorDiane Trout <diane@caltech.edu>
Wed, 25 Mar 2009 19:12:43 +0000 (19:12 +0000)
committerDiane Trout <diane@caltech.edu>
Wed, 25 Mar 2009 19:12:43 +0000 (19:12 +0000)
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

index 559eefee767d4814b94c5a4665d2e763aeace43e..19190ee3e6444605973eea86008b1d901f7198bd 100644 (file)
@@ -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):