Skip to content

Commit

Permalink
Rename Subject of teaching to Topic of Teaching
Browse files Browse the repository at this point in the history
  • Loading branch information
gythaogg committed Dec 17, 2024
1 parent f8dc70b commit 658408c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions apis_ontology/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ class PersonActiveAtPlace(TibScholRelationMixin):
subj_model = Person
obj_model = Place
subject_of_teaching_vocab = models.ManyToManyField(
Subject, verbose_name="Subject of teaching", blank=True
Subject, verbose_name="Topic of teaching", blank=True
)

@classmethod
Expand Down Expand Up @@ -538,7 +538,7 @@ def reverse_name(cls) -> str:
return "lineage successor of"

subject_of_teaching_vocab = models.ManyToManyField(
Subject, verbose_name="Subject of teaching", blank=True
Subject, verbose_name="Topic of teaching", blank=True
)


Expand Down Expand Up @@ -675,7 +675,7 @@ def reverse_name(cls) -> str:
return "is quoted with name by"

subject_of_teaching_vocab = models.ManyToManyField(
Subject, verbose_name="Subject of teaching", blank=True
Subject, verbose_name="Topic of teaching", blank=True
)


Expand All @@ -692,7 +692,7 @@ def reverse_name(cls) -> str:
return "is quoted without name by"

subject_of_teaching_vocab = models.ManyToManyField(
Subject, verbose_name="Subject of teaching", blank=True
Subject, verbose_name="Topic of teaching", blank=True
)


Expand All @@ -709,7 +709,7 @@ def reverse_name(cls) -> str:
return "requested by"

subject_of_teaching_vocab = models.ManyToManyField(
Subject, verbose_name="Subject of teaching", blank=True
Subject, verbose_name="Topic of teaching", blank=True
)


Expand Down Expand Up @@ -765,7 +765,7 @@ def reverse_name(cls) -> str:
return "teacher of"

subject_of_teaching_vocab = models.ManyToManyField(
Subject, verbose_name="Subject of teaching", blank=True
Subject, verbose_name="Topic of teaching", blank=True
)


Expand Down

0 comments on commit 658408c

Please sign in to comment.