Re: Modifying a field in another model

2013-05-01 Thread Siddharth Ghumre
Hi, Though its not the perfect solution for your query, please refer the link for ModelAdmin to include conditional formatting in admin interface. https://docs.djangoproject.com/en/dev/ref/contrib/admin/ -Siddharth On Mon, Apr 22, 2013 at 10:35 PM, Vittorio wrote: > My (newbye) problem is as

Modifying a field in another model

2013-04-22 Thread Vittorio
My (newbye) problem is as follows: Suppose class Person(models.Model): first_name = models.CharField(max_length=30) last_name = models.CharField(max_length=30) address = models.CharField(max_length=100) class Lent_Book(models.Model): title = m

Modifying a field in another model

2013-04-21 Thread Vittorio
My (newbye) problem is as follows: Suppose class Person(models.Model): first_name = models.CharField(max_length=30) last_name = models.CharField(max_length=30) address = models.CharField(max_length=100) class Lent_Book(models.Model): title = m