From: Diane Trout Date: Wed, 11 Jan 2017 23:03:38 +0000 (-0800) Subject: Remove obsolete render_options, it's available in the base class X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=commitdiff_plain;h=6910f6171d3c0db10755c8225b14d220ffa71969 Remove obsolete render_options, it's available in the base class --- diff --git a/experiments/admin.py b/experiments/admin.py index e22f8ec..c5335dc 100644 --- a/experiments/admin.py +++ b/experiments/admin.py @@ -176,26 +176,6 @@ class SequencerSelect(Select): super(SequencerSelect, self).__init__(*args, **kwargs) self.queryset = queryset - def render_options(self, choices, selected_choices): - # Normalize to strings. - selected_choices = set([force_text(v) for v in selected_choices]) - output = [] - for option_value, option_label in chain(self.choices, choices): - if isinstance(option_label, (list, tuple)): - output.append(u'' % - escape(force_text(option_value))) - for option in option_label: - output.append( - self.render_option(selected_choices, - *option)) - output.append(u'') - else: - output.append( - self.render_option(selected_choices, - option_value, - option_label)) - return u'\n'.join(output) - def render_option(self, selected_choices, option_value, option_label): disabled_sequencers = [str(s.id) for s in self.queryset.filter(active=False)]