add service tagline

This commit is contained in:
Tobias Brunner 2025-03-03 17:54:47 +01:00
parent 5157d7c781
commit 928bd0818e
No known key found for this signature in database
4 changed files with 31 additions and 0 deletions

View file

@ -116,6 +116,7 @@ class Service(models.Model):
name = models.CharField(max_length=200)
slug = models.SlugField(max_length=250, unique=True)
description = ProseEditorField()
tagline = models.TextField(max_length=500, blank=True, null=True)
logo = models.ImageField(
upload_to="service_logos/",
validators=[validate_image_size],