{% extends "holodeck/layout.html" %} {% load i18n %} {% block title %}{% blocktrans with metric.name as name %}Manage Metric: {{ name }}{% endblocktrans %} | {{ block.super }}{% endblock %} {% block breadcrumb %}
  • {{ dashboard.name }}
  • /
  • {{ metric.name }}
  • {% endblock %} {% block page_header %} {% trans "Create a new metric" %} {{ block.super }} {% endblock %} {% block main %}
    {% block inner %}

    {% trans "Here you can edit Metric information and display settings as well as source client configuration info." %}


    {% if request.GET.success %}
    {% trans "Changes to this metric were saved successfully." %}
    {% else %} {% if form.errors %}
    {% trans "Please correct the errors below." %}
    {% endif %} {% endif %} {% if messages %} {% for message in messages %}
    {{ message }}
    {% endfor %} {% endif %}
    {% csrf_token %}
    {% trans "Metric Details" %}
    {% for field in form %} {% if field.name != 'origins' %} {% include "holodeck/partial/_form_field.html" %} {% endif %} {% endfor %}
    {% trans "Client Security" %}

    {% trans "To start sending samples to this metric configure your client with the following API-Key:" %}

    {{ metric.api_key }}

    {% endblock %}
    {% endblock %}