Skip to content

Commit d4831d4

Browse files
committed
Remove restriction with duplicated titles. See ietf-tools#1449
- Legacy-Id: 8108
1 parent c414e14 commit d4831d4

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

ietf/liaisons/forms.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,8 +292,6 @@ def clean_title(self):
292292
exclude_filter = {'pk': self.instance.pk}
293293
else:
294294
exclude_filter = {}
295-
if LiaisonStatement.objects.exclude(**exclude_filter).filter(title__iexact=title).exists():
296-
raise forms.ValidationError('A liaison statement with the same title has previously been submitted.')
297295
return title
298296

299297

0 commit comments

Comments
 (0)