> Now i go to the admin interface of Entries and want to add a new
> Entry.
> Then i select a party for the new entry.
> After having that selected i want to reload the form ajax like
> and show only the politicians that belong to that specific selected
> party.
>
One way to do this would be to override the admin template for the
change_form.html for your model, and add the necessary Javascript to it
to do what you need. You will likely need to create a view for your app
that performs the querying for your Ajax request, but you'd write the
view like you would any other, and you'd just override the admin
template to include the Javascript that calls to your view and parses
the response.
Overriding the admin templates documentation is here:
http://docs.djangoproject.com/en/dev/ref/contrib/admin/#overriding-admin-templates
Hope that helps,
---Peter