Skip to content

Commit

Permalink
Merge pull request #6 from edx/asadiqbal08/SOL-1158-add-verbose-name
Browse files Browse the repository at this point in the history
SOL-1158
  • Loading branch information
mattdrayer committed Aug 31, 2015
2 parents f8052a3 + 25cf599 commit 014ee81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion organizations/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Organization(TimeStampedModel):
one or more courses delivered by the LMS. Organizations have a base set of
metadata describing the organization, including id, name, and description.
"""
name = models.CharField(max_length=255, db_index=True)
name = models.CharField(verbose_name="Long name", max_length=255, db_index=True)
short_name = models.CharField(max_length=255, db_index=True)
description = models.TextField()
logo = models.ImageField(
Expand Down

0 comments on commit 014ee81

Please sign in to comment.