{% extends 'timeseer.html' %} {% from 'macros.html' import alerter, visualize_series_name, visualize_series %} {% from 'resources.html' import resource_breadcrumb, resource_menu with context %} {% block styles %} {% endblock %} {% block menu %} {{ resource_menu('Data sets') }} {% endblock %} {% block breadcrumb %} {{ resource_breadcrumb([ ("Data sets", url_for('data_sets.list_data_sets', sourcename=source_name)), data_set.name, ]) }} {% endblock %} {% block main %}

Manage series for "{{ data_set.name }}"

{% if show_toolbar and not is_uploaded %} {% endif %}
Date range {{ data_set.start_date|ts_datetime }} {{ bootstrap_icon('arrow-right-short', 'text-dark') }} {{ data_set.end_date|ts_datetime }}
{% if data_set.help_text != "" and not is_uploaded %}

{{ data_set.short_help_text }}

{% else%} No description provided. {% endif %}
{{ alerter() }}
{% if source_name %} {% endif %}
{% if data_set_series and show_toolbar %}
{% endif %} {% if data_set_series|count > 1 or pattern %}
{% endif %}
{% if data_set_series %}
{% if source_name %} {% endif %} {% if show_toolbar %} {% endif %} {% for series in data_set_series|sort(attribute='name') %} {% if show_toolbar %} {% endif %} {% endfor %}
Series name
{{ visualize_series_name(series.name) }}
{% else %}

No series found.

{% endif %}

Add series

{% if source_name is not none %} {% endif %}
{% if series_set_series|length > 0 %}
{% endif %}
{% if series_set_series|length > 0 %}

{{ series_set_series|length }} series found.

{% if source_name is not none %} {% endif %} {% for series in series_set_series|sort(attribute='name') %} {% endfor %}
Series name
{{ visualize_series(series) }}
{% else%}

No series found.

{% endif %}
{% if data_set.help_text != "" or not is_uploaded %}

{{ data_set.name }}

{% if data_set.help_text == "" %}

No description provided

{% else %}

{{ data_set.short_help_text }}

{{ data_set.html_help_text|safe }}
{% endif %}
{% endif %}

Update {{ data_set.name }}

{% if source_name is not none %} {% endif %}
+ Add description
The description will appear as help text wherever the flow is used. For maximum effect, use a one-liner with a general description, followed by a blank line, followed by longer explanation of why the flow is important. The longer explanation can contain HTML markup.
Cancel
{% endblock %}