0
My Models class is like this
class Produto(models.Model):
NomeRazao = models.CharField('Nome',max_length=50,unique=False,blank=False)
CpfCnpj = models.IntegerField('Quantidade',blank=False)
Telefone = models.FloatField('Preço de Compra',blank=False)
Total = models.IntegerField('Preço de Venda',blank=False)`
and Admin thus
class ProdutoAdmin(admin.ModelAdmin):
list_display=('NomeRazao','CpfCnpj','InscEstadual','Total')
search_fields = ('NomeRazao',)
ordering = ('NomeRazao',)
exclude =('Usuario',)
I just want to remove Item Sale price from the registration list without deleting it from the list of registrants
– Daniel Marques
I tried to help editing your msg, but your links to the images are broken, okay confused, try to fix.
– Sidon
You want to customize the administration interface window to not display certain fields?
– Giovanni Nunes