diff --git a/src/fellchensammlung/models.py b/src/fellchensammlung/models.py index ac18e2a..cb3ce55 100644 --- a/src/fellchensammlung/models.py +++ b/src/fellchensammlung/models.py @@ -680,6 +680,21 @@ class Report(models.Model): def get_moderation_actions(self): return ModerationAction.objects.filter(report=self) + @property + def reported_content(self): + """ + Dynamically fetch the reported content based on subclass. + The alternative would be to use the ContentType framework: + https://docs.djangoproject.com/en/5.1/ref/contrib/contenttypes/ + """ + print("dodo") + if hasattr(self, "reportadoptionnotice"): + return self.reportadoptionnotice.adoption_notice + elif hasattr(self, "reportcomment"): + return self.reportcomment.reported_comment + print("dada") + return "didi" + class ReportAdoptionNotice(Report): adoption_notice = models.ForeignKey("AdoptionNotice", on_delete=models.CASCADE) @@ -688,6 +703,9 @@ class ReportAdoptionNotice(Report): def reported_content(self): return self.adoption_notice + def __str__(self): + return f"Report der Vermittlung {self.adoption_notice}" + class ReportComment(Report): reported_comment = models.ForeignKey("Comment", on_delete=models.CASCADE) diff --git a/src/fellchensammlung/templates/fellchensammlung/partials/partial-report.html b/src/fellchensammlung/templates/fellchensammlung/partials/partial-report.html index 0a0a47e..1e883c1 100644 --- a/src/fellchensammlung/templates/fellchensammlung/partials/partial-report.html +++ b/src/fellchensammlung/templates/fellchensammlung/partials/partial-report.html @@ -1,9 +1,7 @@ {% load i18n %}