My models look like this:

class Group(models.Model):

        def __str__(self):
                return self.name

        name = models.CharField(maxlength = 100)
        general_info = models.TextField()

          class Admin:
                    pass:


class Vacancies(models.Model):
        def __str__(self):
                return self.title

        title = models.CharField(maxlength = 200, core = True)
        description = models.TextField()
        group = models.ForeignKey(Group, edit_inline=models.STACKED,
num_in_admin=1, num_extra_on_change = 1)


Now i'd like to have the vacancies appear collapsed in the admin
interface for the groups. 
Can this be done?


--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to