From: Diane Trout Date: Fri, 25 May 2012 19:16:33 +0000 (-0700) Subject: Fix Multiplex index pluralization X-Git-Tag: v0.5.5~14^2~2 X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=commitdiff_plain;h=85251cfea2e97f7692103968e26d10234b3a721e Fix Multiplex index pluralization --- diff --git a/htsworkflow/frontend/samples/models.py b/htsworkflow/frontend/samples/models.py index de6fc11..7ef895c 100644 --- a/htsworkflow/frontend/samples/models.py +++ b/htsworkflow/frontend/samples/models.py @@ -148,6 +148,7 @@ class MultiplexIndex(models.Model): sequence = models.CharField(max_length=12, blank=True, null=True) class Meta: + verbose_name_plural = "multiplex indicies" unique_together = ('adapter_type', 'multiplex_id') class Library(models.Model):