{% extends 'base.html' %} {% block style %} {% endblock %} {% block content %}

{% if prev_fn %} PREV {% else %} PREV {% endif %} | {% if next_fn %} NEXT {% else %} NEXT {% endif %}

Note: webedit doesn't currently verify data correctness. If you want to verify the data, run steve verify from the command line.

{% for field in fields %} {% endfor %}
 
filename {{ fn[5:] }}
{{ field.name }} {% if field.choices %}
{% for choice in field.choices %} {{ choice }} {% endfor %}
Pick a choice.
{% elif field.type == 'IntegerField' %}
Integer value
{% elif field.type == 'CharField' %}
Text
{% elif field.type == 'DateField' %}
Date (ex. 2012-01-06)
{% elif field.type == 'DateTimeField' %}
Datetime (ex. 2012-01-06T11:25:01Z)
{% elif field.type == 'SlugField' %}
Slug
{% elif field.type == 'TextField' %}
Text{{ ': Markdown formatted' if field.md }}
{% elif field.type == 'BooleanField' %} False True {% elif field.type == 'TextArrayField' %}
List of items, one per line
{% else %}
{{ field.value }}
{% endif %} {% if field.error %}
{{ field.error }}
{% endif %}
 
{% endblock %}