diff --git a/music_publisher/models.py b/music_publisher/models.py index 6cecdcc1..12b5503a 100644 --- a/music_publisher/models.py +++ b/music_publisher/models.py @@ -460,6 +460,7 @@ class Meta: 'ISWC', max_length=15, blank=True, null=True, unique=True, validators=(CWRFieldValidator('iswc'),)) original_title = models.CharField( + verbose_name='Title of the Original Work', max_length=60, db_index=True, blank=True, help_text='Use only for modification of existing works.', validators=(CWRFieldValidator('work_title'),)) @@ -1542,4 +1543,4 @@ class Meta: date = models.DateTimeField(auto_now_add=True, editable=False) def __str__(self): - return self.filename \ No newline at end of file + return self.filename