This is a great stuff and I'm really glad that you show me that, but I still wonder if it is possible to do sth like that in a model ;-) I mean:
Model looks like that: class ShortNews(models.Model): url = models.URLField("URL") description = models.CharField("Desc", maxlength="200") author = models.ForeignKey(User, editable=False) date = models.DateTimeField("Date", auto_now_add=True) status = models.IntegerField("Status", editable=False, default="0") and I don't know why it is not possible to do sth like: class ShortNews(models.Model): url = models.URLField("URL", attr['class':'required']) description = models.CharField("Desc", maxlength="200", attr['class':'highlight']) ..etc It's much faster than doing that at every form_for_* and you don't have to have it spread all over the code. But the point is, that I don't know if there is something which can allow to do that :) Thanks, l5x --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---