add a linebreak befor support message
All checks were successful
Build and Deploy Staging / build (push) Successful in 1m50s
Tests / test (push) Successful in 25s
Build and Deploy Staging / deploy (push) Successful in 9s

This commit is contained in:
Tobias Brunner 2025-08-22 09:09:44 +02:00
parent 83a18837ec
commit 16aeb59d82
No known key found for this signature in database

View file

@ -80,7 +80,7 @@ class Organization(ServalaModelMixin, models.Model):
"Need help? We're happy to help via the <a href='{support_url}'>support form</a>."
).format(support_url=self.urls.support)
return mark_safe(
f'{message} <i class="bi bi-person-raised-hand"></i> {support_message}'
f'{message} <br /><i class="bi bi-person-raised-hand"></i> {support_message}'
)
@classmethod