{% extends "holodeck/layout.html" %} {% load i18n holodeck_inclusion_tags %} {% block title %}{{ dashboard.name }} | {{ block.super }}{% endblock %} {% block breadcrumb %}
  • {{ dashboard.name }} Edit
  • {% endblock %} {% block page_header %} {% trans "Create a new metric" %} {% trans "Export" %} {{ block.super }} {% endblock %} {% block main %}
    {% if not metrics %} {% url holodeck-new-metric dashboard.id as link %}
    {% blocktrans %}This dashboard does not currently have any metrics. Would you like to create a new metric now?{% endblocktrans %}
    {% else %} {% for metric in metrics %} {% render_metric metric %} {% endfor %} {% endif %}
    {% endblock %}