yeah, i've changed things around just slightly and included a
tabularinline

however, now i need to modify the template to display a link to each
of the items pages, b/c as is it only allows one to update the name of
the clientobject, which is now:

class ClientObject(models.Model):
  client = models.ForeignKey(Client)
  name = models.CharField(max_length=250)
  def __unicode__(self):
    return self.name

i would like each ClientObject listed to link to it's admin page.
Right now i just have the portfolio application w/ the Portfolio class
extending the ClientObjects class. Ultimately, i also wouldnt mind a
list of classes that extend the ClietObjects class to be listed w/ an
"add blahblahblah" to client link that pops open an admin popup

On May 15, 7:42 pm, Shawn Milochik <sh...@milochik.com> wrote:
> Try this:
>
> http://docs.djangoproject.com/en/1.3/ref/contrib/admin/#django.contri...

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to