Re: "why isn't there a proper API documentation on django like
doxygen? I find the django documentation full of content but awful
structure! "
Have a look at:
http://docs.djangoproject.com/en/dev/internals/documentation/
I am curious as to what specific problems you have? I have read the
docs f
Thanks, that did the trick!
On Jan 4, 9:22 pm, Daniel Roseman wrote:
> On Tuesday, January 4, 2011 7:42:16 PM UTC, mrmclovin wrote:
>
> > Hi,
>
> > I have a 'project' model
>
> > class Project(models.Model):
> > title = models.CharField(max_length=100)
> > links = models.ManyToManyField('
On Tuesday, January 4, 2011 7:42:16 PM UTC, mrmclovin wrote:
>
> Hi,
>
> I have a 'project' model
>
> class Project(models.Model):
> title = models.CharField(max_length=100)
> links = models.ManyToManyField('Link', related_name='link')
>
> and a 'link' model
>
> class Link(models.Model):
>
Hi,
I have a 'project' model
class Project(models.Model):
title = models.CharField(max_length=100)
links = models.ManyToManyField('Link', related_name='link')
and a 'link' model
class Link(models.Model):
label = models.CharField(max_length=50)
url = models.URLField(max_length=10
4 matches
Mail list logo