Minor display changes
authorLorian Schaeffer <lorian@caltech.edu>
Fri, 18 Apr 2008 21:56:11 +0000 (21:56 +0000)
committerLorian Schaeffer <lorian@caltech.edu>
Fri, 18 Apr 2008 21:56:11 +0000 (21:56 +0000)
gaworkflow/frontend/fctracker/models.py

index 53755efc81c70cca6004387bddd352c4a6388947..2505656694abd9a468f7a1f65d89d5e566102be2 100644 (file)
@@ -39,8 +39,7 @@ class Library(models.Model):
       ('?', 'Unknown'),
       ('Sample', 'Raw sample'),
       ('Progress', 'In progress'),
-      ('Gel', 'Unpurified gel'),
-      ('1A', 'Purified gel'),
+      ('1A', 'Ligation, then gel'),
       ('PCR', 'Ligation, then PCR'),
       ('1Ab', 'Ligation, PCR, then gel'),
       ('1Aa', 'Ligation, gel, then PCR'),
@@ -68,9 +67,9 @@ class Library(models.Model):
     save_as = True
     save_on_top = True
     search_fields = ['library_name', 'library_id']
-    list_display = ('library_id', 'library_name', 'made_for', 'library_species', 'creation_date', 'stopping_point')
+    list_display = ('library_id', 'library_name', 'made_for', 'creation_date', 'stopping_point')
     list_display_links = ('library_id', 'library_name')
-    list_filter = ('stopping_point', 'library_species', 'made_for', 'made_by')
+    list_filter = ('library_species', 'made_for', 'stopping_point', 'made_by')
     fields = (
         (None, {
             'fields': (('library_id', 'library_name'), ('library_species', 'RNAseq'),)