норм сделал. Но вот такая ошибка 'Vehicles' object has no attribute '_meta'
модель
class Vehicles(models.Model):
uid = models.UUIDField(primary_key=True)
server_uid = models.ForeignKey(Servers, models.DO_NOTHING, db_column='server_uid')
vehicle_id = models.BigIntegerField()
vehicle_name = models.CharField(max_length=255)
vehicle_type = models.CharField(max_length=3, blank=True, null=True)
mnf = models.CharField(max_length=50, blank=True, null=True)
garage_number = models.CharField(max_length=255, blank=True, null=True)
phone = models.CharField(max_length=50, blank=True, null=True)
comment = models.TextField(blank=True, null=True)
created_date = models.BigIntegerField(blank=True, null=True)
last_time_alive = models.BigIntegerField(blank=True, null=True)
is_online = models.BooleanField()
update_date = models.BigIntegerField()
is_blocking = models.BooleanField(blank=True, null=True)
blocking_desc = models.TextField(blank=True, null=True)
tariff = models.ForeignKey(Tariff, models.DO_NOTHING, db_column='tariff', blank=True, null=True)
contract_uid = models.ForeignKey(Contacts, models.DO_NOTHING, db_column='contract_uid', blank=True, null=True)
class Meta:
managed = False
db_table = 'vehicles'
unique_together = (('server_uid', 'vehicle_id'),)
form
class Vehicles(forms.BaseModelForm):
class Meta:
model = Vehicles
fields = (
'vehicle_id', 'vehicle_name', 'vehicle_type', 'mnf', 'garage_number', 'phone', 'comment', 'created_date',
'last_time_alive', 'is_online', 'is_blocking', 'blocking_desc', 'tariff', 'contract_uid'
)
Зачем ты указываешь db_column? Название модели лучше указывать в единственном числе Скинь весь трейсбек
База унаследована, это модель создается инспектором
Через inspect db, что ли?
ага
Скорее всего что-то не то в форму отдаешь, нужно и форму смотреть
Обсуждают сегодня