Re: docstrings for inherited models not showing in Admin Docs

2012-11-11 Thread David Simmons
Mike thanks for the quick response. I'll take a look at the source. cheers Dave -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/isD2JdKwX5YJ. To post to

Re: docstrings for inherited models not showing in Admin Docs

2012-11-10 Thread Mike Dewhirst
David I think the solution is to look at the admindocs source and tweak it to do what you want and submit a patch. The target audience for admindocs is template authors. This means you are possibly trying to make admindocs do something it wasn't designed to do. I don't mean your specific pro

docstrings for inherited models not showing in Admin Docs

2012-11-10 Thread David Simmons
Hi I'm using Django 1.4.2. I have a base model: class Account(models.Model):account_id = models.CharField(max_length=10, unique=True)name = models.CharField(max_length=50)balance = models.DecimalField(max_digits=20, decimal_places=2) and I have child model that inheri