14 lines
479 B
Python
14 lines
479 B
Python
from django.db import models
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class ReferenceType(models.TextChoices):
|
|
BRAND = "brand", _("Brand")
|
|
MARKA = "marka", _("Marka")
|
|
COLOR = "color", _("Color")
|
|
FUEL_TYPE = "fuel_type", _("Fuel type")
|
|
BODY_TYPE = "body_type", _("Body type")
|
|
CAR_POSITION = "car_position", _("Car position")
|
|
STATE_CAR = "state_car", _("Car state")
|
|
EVALUATION_PURPOSE = "evaluation_purpose", _("Evaluation purpose")
|