How to mark compulsory fields in admin interface?

2008-06-05 Thread Cliff Liang Xuan
Hi, Is there a way to put a sign, e.g. a start * beside the compulsory fields in the Django Admin interface? Imagine you have a big table accommodating all kinds of events from a 20 minute casual drink to a multi day conference. The page for programming the multi day conference will put off user wh

Re: How to mark compulsory fields in admin interface?

2008-06-05 Thread Jeff Anderson
Cliff Liang Xuan wrote: Hi, Is there a way to put a sign, e.g. a start * beside the compulsory fields in the Django Admin interface? Imagine you have a big table accommodating all kinds of events from a 20 minute casual drink to a multi day conference. The page for programming the multi day confe

Re: How to mark compulsory fields in admin interface?

2008-06-05 Thread Cliff
Hi Jeff, Thanks a lot for you reply. I guess now I need to look into how to set my own forms and views. Do you know some good tutorials online? I guess this official one should be what I look at first: http://www.djangobook.com/en/1.0/chapter17/. Best regards, Cliff On Jun 6, 12:41 am, Jeff Ander

Re: How to mark compulsory fields in admin interface?

2008-06-06 Thread Cliff
Thank you. On Jun 6, 1:19 am, Jeff Anderson <[EMAIL PROTECTED]> wrote: > Cliff wrote: > > Hi Jeff, > > Thanks a lot for you reply. I guess now I need to look into how to set > > my own forms and views. > > Do you know some good tutorials online? I guess this official one > > should be what I look

Re: How to mark compulsory fields in admin interface?

2008-06-06 Thread cory
By default, required fields are shown in bold. Just change the "required" class in your admin's media directory and you can flag required fields anyway you like. Cory On Jun 5, 6:34 pm, "Cliff Liang Xuan" <[EMAIL PROTECTED]> wrote: > Hi, > Is there a way to put a sign, e.g. a start * beside the

Re: How to mark compulsory fields in admin interface?

2008-06-06 Thread Cliff
Hi Cory, Thanks for your reply. Can you please be more precise? I am still on the level of trying to understand how the Django classes are organized. Which file is that tag in? Thanks Cliff On Jun 6, 3:03 pm, cory <[EMAIL PROTECTED]> wrote: > By default, required fields are shown in bold. Just c

Re: How to mark compulsory fields in admin interface?

2008-06-06 Thread Oscar Carlsson
It's HTML - ie, the required fields are in *bold* (I'm not sure google groups accepts inline HTML, tho). Good luck :) Oscar On Fri, Jun 6, 2008 at 10:12 PM, Cliff <[EMAIL PROTECTED]> wrote: > > Hi Cory, > Thanks for your reply. Can you please be more precise? I am still on > the level of trying