# 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 -r ff9c95239c3a -r 4752861906b3 apps/bundle/models.py --- a/apps/bundle/models.py Sat Oct 27 16:25:19 2012 -0400 +++ b/apps/bundle/models.py Sat Oct 27 16:26:11 2012 -0400 @@ -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