Exemple #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
     )
Exemple #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)
Exemple #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,
     )
 def iter_options(self):
     return iter_options(self.grouped_choices,
                         cutoff=self.html_cutoff,
                         cutoff_text=self.html_cutoff_text)
 def iter_options(self):
     return iter_options(
         self.grouped_choices,
         cutoff=self.html_cutoff,
         cutoff_text=self.html_cutoff_text
     )
 def iter_options(self):
     return iter_options(
         self.get_choices(cutoff=self.html_cutoff),
         cutoff=self.html_cutoff,
         cutoff_text=self.html_cutoff_text
     )
Exemple #7
0
 def iter_options(self):
     return iter_options(self.grouped_choices)
Exemple #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)
Exemple #9
0
 def iter_options(self):
     return iter_options(self.grouped_choices)