Re: editable in fields

2006-01-30 Thread Maniac
Tim TerlegÄrd wrote: To get a non-editable field you can do field = meta.CharField(editable = False). This is meant for hiding the field, right? Not to make it readonly in code? It means (as far as I know) that default manipulators will skip it and won't complain about their invalidity. So

editable in fields

2006-01-30 Thread Tim TerlegÄrd
To get a non-editable field you can do field = meta.CharField(editable = False). This is meant for hiding the field, right? Not to make it readonly in code? To me hidden is more intuitive than editable. I thought that when so much was renamed anyway... :) Tim