Hi, I've create a model form by:
class GameForm(ModelForm): class Meta: model = Game fields = ('white', 'black', 'time_days_W', 'inc_time') and the form template: <form action="/setup_game/" method="POST"> {{ form.as_p }} <input type="submit" value="Submit" /> The view function is ok, but I want to change the label of a field. I want to change "time_days_W" with "time". I must customizing the form template for this? Alfredo --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---