remove now unused {% load url from future %}
[mygpo.git] / mygpo / web / google.py
blobb155b11d8429231c9a7654dd92f24a017b49e0f5
2 # This file is part of my.gpodder.org.
4 # my.gpodder.org is free software: you can redistribute it and/or modify it
5 # under the terms of the GNU Affero General Public License as published by
6 # the Free Software Foundation, either version 3 of the License, or (at your
7 # option) any later version.
9 # my.gpodder.org is distributed in the hope that it will be useful, but
10 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public
12 # License for more details.
14 # You should have received a copy of the GNU Affero General Public License
15 # along with my.gpodder.org. If not, see <http://www.gnu.org/licenses/>.
18 from django.conf import settings
20 def analytics(request):
21 pid = settings.GOOGLE_ANALYTICS_PROPERTY_ID
22 if pid:
23 return {'google_analytics_property_id': pid}
24 else:
25 return {}
28 def adsense(request):
29 adclient = settings.ADSENSE_CLIENT
30 if not adclient:
31 return {}
33 slot_bottom = settings.ADSENSE_SLOT_BOTTOM
34 if not slot_bottom:
35 return {}
37 return {
38 'adsense_client': adclient,
39 'adsense_slot_bottom': slot_bottom,