Aany "model" can be included in the admin interface as long as you
include a META subclass inside of it with the admin attribute defined:

class Tagged(meta.Model):
   user = meta.ForeignKey(User)
   site = meta.ForeignKey(Site)
   tag = meta.ForeignKey(Tag)

    class META:
        admin=meta.Admin()

Now that the class META is defining that this model has an admin
interface, you will see it and can manipulate it.

-berto.

On 1/31/06, kggroups <[EMAIL PROTECTED]> wrote:
>
> wow.  that is pretty simple.  thanks for the response.
>
> i'm guessing adding additional attributes to the Tagged class would not
> be a problem?  for example, a date, etc?
>
> Would even the Tagged class have an admin form prebuild?
>
>

Reply via email to