Skip to content

Commit

Permalink
removed google analytics
Browse files Browse the repository at this point in the history
  • Loading branch information
manjunath24 committed Jun 13, 2014
1 parent b426eb3 commit 772cfbf
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 15 deletions.
8 changes: 3 additions & 5 deletions dinette/templates/dinette/base.html
Expand Up @@ -2,7 +2,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
{% load compress %}
{% load analytics %}
{% load dinette_tags %}

{% block html_declare %}
Expand All @@ -29,8 +28,8 @@
<body>

<div class='container'>
{% block main_content %} {% endblock %}
{% block content %}
{% block main_content %} {% endblock %}
{% block content %}


{% endblock %}
Expand All @@ -46,7 +45,6 @@
<script type="text/javascript" src="{{ STATIC_URL }}dinette/scripts/dinetteajax.js"></script>
{% endcompress %}

{% analytics %}

</body>
</body>
</html>
9 changes: 4 additions & 5 deletions forum/settings.py
Expand Up @@ -88,10 +88,10 @@
os.path.join(PROJECT_DIR, 'templates')
)
TEMPLATE_CONTEXT_PROCESSORS = (
'django.contrib.auth.context_processors.auth',
'django.core.context_processors.debug',
'django.core.context_processors.i18n',
'django.core.context_processors.media',
'django.contrib.auth.context_processors.auth',
'django.core.context_processors.debug',
'django.core.context_processors.i18n',
'django.core.context_processors.media',
'django.contrib.messages.context_processors.messages',
'django.core.context_processors.request',
'django.core.context_processors.static',
Expand All @@ -111,7 +111,6 @@
'dinette',

'compressor',
'google_analytics',
'sorl.thumbnail',
'pagination',

Expand Down
9 changes: 4 additions & 5 deletions forum/settings_travis.py
Expand Up @@ -84,10 +84,10 @@
# Don't forget to use absolute paths, not relative paths.
)
TEMPLATE_CONTEXT_PROCESSORS = (
'django.contrib.auth.context_processors.auth',
'django.core.context_processors.debug',
'django.core.context_processors.i18n',
'django.core.context_processors.media',
'django.contrib.auth.context_processors.auth',
'django.core.context_processors.debug',
'django.core.context_processors.i18n',
'django.core.context_processors.media',
'django.contrib.messages.context_processors.messages',
'django.core.context_processors.request',
'django.core.context_processors.static',
Expand All @@ -107,7 +107,6 @@
'dinette',

'compressor',
'google_analytics',
'sorl.thumbnail',
'pagination'
)
Expand Down

0 comments on commit 772cfbf

Please sign in to comment.