Esempio n. 1
0
 def iter_options(self):
     return fields.iter_options(
         # self.grouped_choices,
         self.get_choices(self.html_cutoff),
         cutoff=self.html_cutoff,
         cutoff_text=self.html_cutoff_text
     )
Esempio n. 2
0
 def iter_options(self):
     """
     Helper method for use with templates rendering select widgets.
     """
     return fields.iter_options(self.grouped_choices,
                                cutoff=self.html_cutoff,
                                cutoff_text=self.html_cutoff_text)
Esempio n. 3
0
 def iter_options(self):
     return iter_options(
         self.get_choices(cutoff=self.html_cutoff),
         cutoff=self.html_cutoff,
         cutoff_text=self.html_cutoff_text,
     )
Esempio n. 4
0
 def iter_options(self):
     return iter_options(self.grouped_choices,
                         cutoff=self.html_cutoff,
                         cutoff_text=self.html_cutoff_text)
Esempio n. 5
0
 def iter_options(self):
     return iter_options(
         self.grouped_choices,
         cutoff=self.html_cutoff,
         cutoff_text=self.html_cutoff_text
     )
Esempio n. 6
0
 def iter_options(self):
     return iter_options(
         self.get_choices(cutoff=self.html_cutoff),
         cutoff=self.html_cutoff,
         cutoff_text=self.html_cutoff_text
     )
Esempio n. 7
0
 def iter_options(self):
     return iter_options(self.grouped_choices)
Esempio n. 8
0
 def iter_options(self):
     return fields.iter_options(
         # self.grouped_choices,
         self.get_choices(self.html_cutoff),
         cutoff=self.html_cutoff,
         cutoff_text=self.html_cutoff_text)
Esempio n. 9
0
 def iter_options(self):
     return iter_options(self.grouped_choices)