diff --git a/innovate/forms.py b/innovate/forms.py index 6ad64c3..c73e31e 100644 --- a/innovate/forms.py +++ b/innovate/forms.py @@ -57,4 +57,4 @@ class ScoreForm(forms.ModelForm): class Meta: model = Score - fields = ['innovation', 'need', 'finances', 'creativity', 'qna', 'speaking', 'persuasiveness', 'professionalism'] \ No newline at end of file + fields = ['innovation', 'need', 'finances', 'creativity', 'qna', 'speaking', 'persuasiveness', 'professionalism'] diff --git a/innovate/models.py b/innovate/models.py index 567e15a..f39e45d 100644 --- a/innovate/models.py +++ b/innovate/models.py @@ -21,7 +21,7 @@ class Team(models.Model): verbose_name_plural = "Teams" def __str__(self): - return self.name + return f'Team {self.number}: {self.name}' # def clean(self): # # Don't allow teams to have the same name. diff --git a/manage.py b/manage.py old mode 100755 new mode 100644