I want to create a custom ModelAdmin, but for a mix of models, not just one.
I have two example models:
class Article(models.Model):
author = models.GenericIPAddressField()
# ...
class Comment(models.Model):
author = models.GenericIPAddressField()
# ...
Now I want to be able t
On 30/10/2012 12:06, Bill Freeman wrote:
On Mon, Oct 29, 2012 at 12:13 PM, Some Developer
wrote:
Hi,
I'm in the process of writing a Django site and one of the requirements is
that it have a custom admin panel and a custom control panel but I am having
some problems coming up with the
On Mon, Oct 29, 2012 at 12:13 PM, Some Developer
wrote:
> Hi,
>
> I'm in the process of writing a Django site and one of the requirements is
> that it have a custom admin panel and a custom control panel but I am having
> some problems coming up with the best way to org
Hi,
I'm in the process of writing a Django site and one of the requirements
is that it have a custom admin panel and a custom control panel but I am
having some problems coming up with the best way to organise my application.
My initial idea was to have the admin (and control) pane
4 matches
Mail list logo