Exemplo 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
     )
Exemplo 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)
Exemplo 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,
     )
Exemplo n.º 4
0
 def iter_options(self):
     return iter_options(self.grouped_choices,
                         cutoff=self.html_cutoff,
                         cutoff_text=self.html_cutoff_text)
Exemplo n.º 5
0
 def iter_options(self):
     return iter_options(
         self.grouped_choices,
         cutoff=self.html_cutoff,
         cutoff_text=self.html_cutoff_text
     )
Exemplo 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
     )
Exemplo n.º 7
0
 def iter_options(self):
     return iter_options(self.grouped_choices)
Exemplo 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)
Exemplo n.º 9
0
 def iter_options(self):
     return iter_options(self.grouped_choices)