fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Added ES translations (+fixture for infopages).
[wolnelektury.git]
/
apps
/
sponsors
/
widgets.py
diff --git
a/apps/sponsors/widgets.py
b/apps/sponsors/widgets.py
index
3bb586b
..
e4b30bb
100644
(file)
--- a/
apps/sponsors/widgets.py
+++ b/
apps/sponsors/widgets.py
@@
-1,3
+1,7
@@
+# -*- coding: utf-8 -*-
+# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
from django.conf import settings
from django import forms
from django.utils.safestring import mark_safe
from django.conf import settings
from django import forms
from django.utils.safestring import mark_safe
@@
-10,20
+14,20
@@
class SponsorPageWidget(forms.Textarea):
js = (
'http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js',
'http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/jquery-ui.min.js',
js = (
'http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js',
'http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/jquery-ui.min.js',
- settings.
MEDIA
_URL + 'sponsors/js/jquery.json.min.js',
- settings.
MEDIA
_URL + 'sponsors/js/footer_admin.js',
+ settings.
STATIC
_URL + 'sponsors/js/jquery.json.min.js',
+ settings.
STATIC
_URL + 'sponsors/js/footer_admin.js',
)
css = {
)
css = {
- 'all': (settings.
MEDIA
_URL + 'sponsors/css/footer_admin.css',),
+ '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):
output = [super(SponsorPageWidget, self).render(name, value, attrs)]
- sponsors = [(unicode(obj), obj.pk) for obj in models.Sponsor.objects.all()]
- sponsors_js = ', '.join('{name: "%s", id: %d}' % sponsor for sponsor in sponsors)
+ sponsors = [(unicode(obj), obj.pk
, obj.logo.thumbnail
) for obj in models.Sponsor.objects.all()]
+ sponsors_js = ', '.join('{name: "%s", id: %d
, image: "%s"
}' % sponsor for sponsor in sponsors)
output.append(u'<script type="text/javascript">addEvent(window, "load", function(e) {')
# TODO: "id_" is hard-coded here. This should instead use the correct
# API to determine the ID dynamically.
output.append(u'<script type="text/javascript">addEvent(window, "load", 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' %
+ output.append(u'$("#id_%s").sponsorsFooter({sponsors: [%s]}); });</script>\n' %
(name, sponsors_js))
return mark_safe(u''.join(output))
(name, sponsors_js))
return mark_safe(u''.join(output))