feat: Add description for organizations

This commit is contained in:
2024-11-14 19:01:24 +01:00
parent 9ee0bd8e30
commit 2c11f7c385
2 changed files with 19 additions and 0 deletions

View File

@@ -111,6 +111,7 @@ class RescueOrganization(models.Model):
updated_at = models.DateTimeField(auto_now=True)
created_at = models.DateTimeField(auto_now_add=True)
comment = models.TextField(verbose_name=_("Kommentar"), null=True, blank=True, )
description = models.TextField(null=True, blank=True, verbose_name=_('Beschreibung')) # Markdown allowed
class User(AbstractUser):