Which of the following indicates the use of unordered_list in Django:
1. Recursively takes a self-nested list and returns an HTML unordered list – WITHOUT opening and closing tag
2. Recursively takes a self-nested list and returns an HTML unordered list – WITH opening and closing tags
In Django, what is the correct order of the clean method calls for a form:
1. clean() method of the Form class
2. clean_() method of the Form class
3. clean() method of the Field class