feat: add link to original content

This commit is contained in:
moanos [he/him] 2025-03-10 22:09:17 +01:00
parent 9086e2e75b
commit 12d5a976cc
2 changed files with 14 additions and 4 deletions

View File

@ -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)

View File

@ -1,7 +1,7 @@
{% load i18n %}
<div class="report card">
<h2>
{% translate 'Meldung von ' %}<i>{{ report.reported_content }}</i>
{% translate 'Meldung von ' %} <a href="{{ report.reported_content_url }}"><i>{{ report.reported_content }}</i></a>
</h2>
{% if report.reported_broken_rules %}
{% translate "Regeln gegen die Verstoßen wurde" %}