Skip to content

Commit

Permalink
fix include of ga.html
Browse files Browse the repository at this point in the history
  • Loading branch information
rloomans committed Feb 22, 2017
1 parent 140d7fd commit 3027025
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions teamtemp/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@
{% endblock %}

{% block bootstrap3_content %}
{# Display django.contrib.messages as Bootstrap alerts #}
{% autoescape off %}<div class="container">{% bootstrap_messages %}</div>{% endautoescape %}
{% block body %}{% endblock %}
{% block footer %}
<div class="footer no-print"><p><br><br><a href="{% url "about" %}">About this site</a><a href="{% url "user" %}">Current user</a></p></div>{% endblock %}
{# Display django.contrib.messages as Bootstrap alerts #}
{% autoescape off %}<div class="container">{% bootstrap_messages %}</div>{% endautoescape %}
{% block body %}{% endblock %}
{% block footer %}
<div class="footer no-print"><p><br><br><a href="{% url "about" %}">About this site</a><a href="{% url "user" %}">Current user</a></p></div>
{% endblock %}
{% if GOOGLE_ANALYTICS_PROPERTY_ID %}{% include "ga.html" %}{% endif %}
{% endblock %}
{% if GOOGLE_ANALYTICS_PROPERTY_ID %}{% include "ga.html" %}{% endif %}

0 comments on commit 3027025

Please sign in to comment.