Hi! I have this form where I want to put red asterisks after each required field, but I can't find a way to do it... This is my template code:
<form name="form1" id="form1" action="resultadd/" method="POST" onSubmit="return" > <table> {%for field in form%} <tr><td>{{field.label}}</td><td>{{field}}{%if something_goes_here %}<font color="red">*</font>{%endif%}</td></tr> {%endfor%} </table> <input type="submit" value="Submit"> </form> My problem is that I can't find a way to make this work. I thought of building a function named, for example, "is_required" that would receive the fields name and return True or False if the field was required or not, but this is not possible to be done since you can't input parameters into functions in the templates... Is there already a function in the fields called is_required? Is the only possible way to make this work to forget my neat for in the template and replace it by calling every field in the form class?... I really don't know how to do this... --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---