Fix spelling

This commit is contained in:
Ramon Wenger 2018-10-18 14:30:37 +02:00
parent 13717c1371
commit c6a4efe267
1 changed files with 2 additions and 2 deletions

View File

@ -6,8 +6,8 @@ from books.models import Module
class ObjectiveGroup(models.Model):
class Meta:
verbose_name = 'Lernziel Gruppe'
verbose_name_plural = 'Lernziel Gruppen'
verbose_name = 'Lernzielgruppe'
verbose_name_plural = 'Lernzielgruppen'
title = models.CharField('title', blank=True, null=False, max_length=255)
module = models.ForeignKey(Module, blank=False, null=False, on_delete=models.CASCADE, related_name='objective_groups')