{% extends 'thecommunity/base.html' %} {% load cache %} {% block meta %} {% endblock %} {% block js %} {% endblock %} {% block uncompressed_js %} {% endblock %} {% block page_title %} {{ insight.name }} by {{ profile_user.username }}{% endblock %} {% block body_class %}insight_page{% endblock %} {% block page_body %}
{% csrf_token %}
{% cache cache_timeout insight_page_user_details insight.id %}

{{ insight.name }}

{{ insight.config.description }}

Data Sources
    {% for collection in insight.collections %} {% for data_point in collection.data_points %}
  • {{ data_point.configured_display_name }}
  • {% endfor %} {% endfor %}
Time Frame {{ insight.tz }}
{% endcache %} {% cache cache_timeout insight_page_insight insight.id %}
{% endcache %} {% cache cache_timeout insight_page_trending_insights %} {% endcache %}
{% endblock %}