mirror of
https://github.com/Rushilwiz/launchx.git
synced 2025-04-04 12:10:17 -04:00
fix: fixed form errors
This commit is contained in:
parent
55fc02219f
commit
e6e3be0ec2
|
@ -57,4 +57,4 @@ class ScoreForm(forms.ModelForm):
|
|||
|
||||
class Meta:
|
||||
model = Score
|
||||
fields = ['innovation', 'need', 'finances', 'creativity', 'qna', 'speaking', 'persuasiveness', 'professionalism']
|
||||
fields = ['innovation', 'need', 'finances', 'creativity', 'qna', 'speaking', 'persuasiveness', 'professionalism']
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue
Block a user