Skip to content

Commit

Permalink
fix(source admin): remove custom full_source field
Browse files Browse the repository at this point in the history
  • Loading branch information
dchiller committed Oct 15, 2024
1 parent b003278 commit 55162dd
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions django/cantusdb_project/main_app/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -778,12 +778,6 @@ class Meta:
queryset=Provenance.objects.all().order_by("name"),
required=False,
)
TRUE_FALSE_CHOICES_SOURCE = (
(True, "Full source"),
(False, "Fragment or Fragmented"),
)

full_source = forms.ChoiceField(choices=TRUE_FALSE_CHOICES_SOURCE, required=False)

century = forms.ModelMultipleChoiceField(
queryset=Century.objects.all().order_by("name"),
Expand Down

0 comments on commit 55162dd

Please sign in to comment.