{% extends "rpt_base.html" %} {% load staticfiles %} {% block header %}

Universe Details: {{ universe.hr_name }}

{% endblock %} {% block content %} {% if universe %} {% if universe.wip %}

This reporting universe is marked as work-in-progress, and should not be used to generate datasets!

{% endif %} {% if universe.void %}

This reporting universe is marked as void, and should not be used to generate datasets!

{% endif %} {% if universe.description %} {{ universe.description|linebreaks }} {% endif %} {% if not universe.wip and not universe.void %}

Create a new DataSet with this Universe

{% endif %}
{% with dtbl=universe.data.via %} {% if dtbl %}

Data Table

{% endif %} {% endwith %} {% with lu_all=universe.lookups.all %} {% if lu_all|length > 0 %}

Available Lookup Tables

{% else %}

No lookups in this universe.

{% endif %} {% endwith %}
{% endif %} {% endblock %}