Answer the question
In order to leave comments, you need to log in
How to make an additional field added to the admin when you click on the plus on Django?
How to make an additional field added to the admin when you click on the plus on Django?
here is the model
class Organization(models.Model):
title = models.CharField('Заголовок', max_length=50)
phone = models.CharField('Телефон', max_length=50)
address = models.CharField('Адрес', max_length=50)
def __str__(self):
return self.title
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question