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

Edit Entry

Editing {{ entry.key }} in {{ datastore.name }}

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

{{ form.key.help_text }}

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

{{ form.key.errors.0 }}

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

{{ form.value.help_text }}

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

{{ form.value.errors.0 }}

{% endif %}

Valid JSON Examples

String:

"hello world"

Number:

42 or 3.14

Boolean:

true or false

Null:

null

Array:

[1, 2, 3]

Object:

{"key": "value"}
Cancel
{% endblock %}