{% extends "page.html" %} {% block main %}

{% if dashboard %} Editing dashboard {{ dashboard.urlname }} {% else %} Create new dashboard {% endif %}

{% if errors.name %}

{{ errors.name | escape }}

{% endif %}

{% if errors.description %}

{{ errors.description | escape }}

{% endif %}

User Permissions

{% if errors.user_permissions %}

{{ errors.user_permissions | escape }}

{% endif %} {% if show_source_servers %}

Choose a source server:

{% if not require_source_server %}

{% endif %} {% for spawner in spawners %}

{% endfor %} {% if errors.spawner %}

{{ errors.spawner | escape }}

{% endif %} {% endif %} {% if show_source_git %}

File source

{% endif %}

Details

{% if errors.presentation_type %}

{{ errors.presentation_type | escape }}

{% endif %} {% if all_conda_envs or allow_custom_conda_env %}

{% if allow_custom_conda_env %} {% endif %} {% if all_conda_envs %} <{% if allow_custom_conda_env %}datalist{% else %}select name="conda_env"{% endif %} id="conda_env_list"> {% for ce in all_conda_envs %} {% endfor %} {% endif %}

{% endif %} {% if errors.conda_env %}

{{ errors.conda_env | escape }}

{% endif %}

Relative to your Jupyter tree or Git root

{% if errors.start_path %}

{{ errors.start_path | escape }}

{% endif %} {% if errors.all %}

{{ errors.all | escape }}

{% endif %}
or Cancel
Help
{% endblock main %} {% block script %} {{ super () }} {% endblock script %}