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

Edit Environment

Update environment name and description

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

{{ form.name.errors.0 }}

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

{{ form.description.errors.0 }}

{% endif %}

Environment Details (Read-only)

Python Version:
{{ environment.python_version }}
Path:
{{ environment.path }}
Scripts:
{{ environment.script_count }}
Cancel
{% endblock %}