Add sites Category model

This commit is contained in:
Aroy-Art 2024-12-30 22:58:14 +01:00
parent ba43e527c9
commit 72b0f9f338
Signed by: Aroy
GPG key ID: 583642324A1D2070

View file

@ -0,0 +1,20 @@
from django.db import models
from django.urls import reverse
from django.contrib.contenttypes.fields import GenericForeignKey, GenericRelation
from django.contrib.contenttypes.models import ContentType
from django.utils.translation import gettext_lazy as _
class Category(models.Model):
name = models.CharField(unique=True, max_length=64)
class Meta:
verbose_name = _("Category")
verbose_name_plural = _("Categories")
def __str__(self):
return self.name.capitalize()