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

    {% trans "Here you can edit Dashboard information as well as access public URLs for sharing with 3rd parties." %}


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

    {% trans "To share this dashboard with 3rd parties for viewing send them the following publicly accessible URL:" %}

    {{ SITE_URL }}{% url holodeck-share-dashboard dashboard.id dashboard.share_key %}

    {% trans "Remove Dashboard" %}
    {% endblock %}
    {% endblock %}