From a8c8863409db5fe85c624d6005dde4219df3d909 Mon Sep 17 00:00:00 2001 From: Renzo Lucioni Date: Fri, 3 Apr 2015 11:24:19 -0400 Subject: [PATCH] Update SKU field help text and verbose name --- common/djangoapps/course_modes/models.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/common/djangoapps/course_modes/models.py b/common/djangoapps/course_modes/models.py index 4df45380e4..e05bdd2dba 100644 --- a/common/djangoapps/course_modes/models.py +++ b/common/djangoapps/course_modes/models.py @@ -57,12 +57,13 @@ class CourseMode(models.Model): # WARNING: will not be localized description = models.TextField(null=True, blank=True) - #optional SKU for Oscar integration + # Optional SKU for integration with the ecommerce service sku = models.CharField( max_length=255, null=True, blank=True, - help_text="This is the SKU(stock keeping unit) of this mode in external services." + verbose_name="SKU", + help_text="This is the SKU (stock keeping unit) of this mode in the external ecommerce service." ) HONOR = 'honor'