Skip to content

Commit

Permalink
fix(CertifiedPost): missing changes from origin
Browse files Browse the repository at this point in the history
  • Loading branch information
calummackervoy committed Jun 11, 2024
1 parent 58b69d0 commit 8b5ce01
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lacommunaute/forum_conversation/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from django.db import models
from django.db.models import Count, F, Q
from django.urls import reverse
from django.utils.translation import gettext_lazy as _
from machina.apps.forum_conversation.abstract_models import AbstractPost, AbstractTopic
from machina.models.abstract_models import DatedModel
from taggit.managers import TaggableManager
Expand Down Expand Up @@ -188,6 +189,8 @@ class Meta:
ordering = [
"-created",
]
verbose_name = _("Certified Post")
verbose_name_plural = _("Certified Posts")

def __str__(self):
return f"{self.post} - {self.topic} - {self.user}"
Expand Down

0 comments on commit 8b5ce01

Please sign in to comment.