# HG changeset patch # User dellsystem # Date 1351369571 14400 # Node ID 4752861906b31fd3de485b447caeecf7e438e3c3 # Parent ff9c95239c3a7021d19904f099142e1dde470d2f Added help_text to bundle description field Explains that a DESCRIPTION file can be used instead (if it exists) diff --git a/apps/bundle/models.py b/apps/bundle/models.py --- a/apps/bundle/models.py +++ b/apps/bundle/models.py @@ -22,7 +22,10 @@ "Acceptable characters: alphanumeric characters, hyphens, and " + "underscores.")) uploader = models.ForeignKey(User) - description = models.TextField(blank=True, null=True) + description = models.TextField(blank=True, null=True, help_text=_( + "Optional. If this field is left empty and the checkbox below " + "is ticked, then the DESCRIPTION file (if it exists) will be " + "used as the bundle description instead.")) octave_format = models.BooleanField('Is the bundle formatted according' ' to Octave package manager standards?', default=False) # If octave_format is true and there is a DESCRIPTION file in the root