diff --git a/src/fellchensammlung/models.py b/src/fellchensammlung/models.py index cb3ce55..9294905 100644 --- a/src/fellchensammlung/models.py +++ b/src/fellchensammlung/models.py @@ -687,14 +687,24 @@ class Report(models.Model): 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" + return None + @property + def reported_content_url(self): + """ + Same as reported_content, just for url + """ + if hasattr(self, "reportadoptionnotice"): + print("dada") + print(self.reportadoptionnotice.adoption_notice.get_absolute_url) + return self.reportadoptionnotice.adoption_notice.get_absolute_url + elif hasattr(self, "reportcomment"): + return self.reportcomment.reported_comment.get_absolute_url + return None class ReportAdoptionNotice(Report): adoption_notice = models.ForeignKey("AdoptionNotice", 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 1e883c1..b5f9abb 100644 --- a/src/fellchensammlung/templates/fellchensammlung/partials/partial-report.html +++ b/src/fellchensammlung/templates/fellchensammlung/partials/partial-report.html @@ -1,7 +1,7 @@ {% load i18n %}

- {% translate 'Meldung von ' %}{{ report.reported_content }} + {% translate 'Meldung von ' %} {{ report.reported_content }}

{% if report.reported_broken_rules %} {% translate "Regeln gegen die Verstoßen wurde" %}