10 lines
268 B
Python
10 lines
268 B
Python
from django.db import models
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
from utils.models import ImageMixin, ProjectBaseMixin
|
|
|
|
|
|
class Partner(ProjectBaseMixin, ImageMixin):
|
|
"""Partner model."""
|
|
url = models.URLField(verbose_name=_('Partner URL'))
|