{% extends "base.html" %} {% block title %}Edit {{ datastore.name }} - Data Stores - PyRunner{% endblock %} {% block content %}
{% include "cpanel/_sidebar.html" %}

Edit Data Store

Update the data store name and description

{% csrf_token %}
{{ form.name }} {% if form.name.help_text %}

{{ form.name.help_text }}

{% endif %} {% if form.name.errors %}

{{ form.name.errors.0 }}

{% endif %}
{{ form.description }} {% if form.description.help_text %}

{{ form.description.help_text }}

{% endif %} {% if form.description.errors %}

{{ form.description.errors.0 }}

{% endif %}

Changing the name?

If you change the name, scripts using the old name will fail. Update your scripts to use the new name.

Cancel
{% endblock %}