Skip to content
Snippets Groups Projects
Verified Commit 5719d15c authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Re-add verbose names on model fields.

parent 524187d2
No related branches found
No related tags found
1 merge request!105Resolve "Add verbose names for models"
......@@ -195,9 +195,9 @@ class Activity(models.Model):
class Notification(models.Model):
user = models.ForeignKey("Person", on_delete=models.CASCADE, related_name="notifications")
title = models.CharField(max_length=150)
description = models.TextField(max_length=500)
link = models.URLField(blank=True)
title = models.CharField(max_length=150, verbose_name=_("Title"))
description = models.TextField(max_length=500, verbose_name=_("Description"))
link = models.URLField(blank=True, verbose_name=_("Link"))
app = models.CharField(max_length=100, verbose_name=_("Application"))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment