class SponsorPageWidget(forms.Textarea):
class Media:
js = (
- '//ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js',
- '//ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/jquery-ui.min.js',
+ '//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js',
+ '//code.jquery.com/ui/1.12.1/jquery-ui.min.js',
settings.STATIC_URL + 'sponsors/js/jquery.json.min.js',
settings.STATIC_URL + 'sponsors/js/footer_admin.js',
)
'all': (settings.STATIC_URL + 'sponsors/css/footer_admin.css',),
}
- def render(self, name, value, attrs=None):
- output = [super(SponsorPageWidget, self).render(name, value, attrs)]
+ def render(self, name, value, attrs=None, renderer=None):
+ output = [super(SponsorPageWidget, self).render(name, value, attrs, renderer)]
sponsors = [(str(obj), obj.pk, obj.logo.url) for obj in models.Sponsor.objects.all().iterator()]
sponsors_js = ', '.join('{name: "%s", id: %d, image: "%s"}' % sponsor for sponsor in sponsors)
output.append('<script type="text/javascript">$(function(e) {')
# TODO: "id_" is hard-coded here. This should instead use the correct
# API to determine the ID dynamically.
- output.append(u'$("#id_%s").sponsorsFooter({sponsors: [%s]}); });</script>\n' % (name, sponsors_js))
- return mark_safe(u''.join(output))
+ output.append('$("#id_%s").sponsorsFooter({sponsors: [%s]}); });</script>\n' % (name, sponsors_js))
+ return mark_safe(''.join(output))