key findings

This commit is contained in:
2025-07-03 17:34:33 +02:00
parent 79ba569be8
commit 1de67689f4
6 changed files with 92 additions and 18 deletions

View File

@@ -105,6 +105,7 @@ class Document(models.Model):
organization = models.ForeignKey(Organization, on_delete=models.CASCADE, related_name='documents')
created_at = models.DateTimeField(auto_now_add=True)
modified_at = models.DateTimeField(auto_now=True)
key_findings = models.TextField(blank=True, null=True, help_text="Key findings")
def __str__(self):
return f"Document for {self.organization.name}"