On 9/23/05, Marek Pulczynski <[EMAIL PROTECTED]> wrote:
> Hi. I am developing payment application in django. The structure is
> straighforward - two models :  client(name)
> payment(ForeignKey(client), date, amount, description).   Each user
> pays monthly a fee which is not constant.  I would like payments to be
> viewed as one table groupped my month TABBED or STACKED doesnt have use
> for me - too much use of screen, lack of readability.   The payment
> made in the past wont be edited - so read-only table view would be a
> good option with separate 'add payment' function for each client.  What
> do you suggest ?

Hey Marek,

I'd suggest writing a custom admin view for that. It sounds like your needs

Writing a custom admin view is easy, although there aren't docs for it
yet. Just write it like a normal view and put it in your admin urlconf
instead of your main urlconf.

Adrian

--
Adrian Holovaty
holovaty.com | djangoproject.com | chicagocrime.org

Reply via email to