{% extends "cronoapp/admin/base-evento.html" %} {% block evento_nav_active_categoria %} active{% endblock %} {% block browser_title %}Editar Categoría, {{ block.super }}{% endblock %} {% block h1_title %}Editar Categoría "{{ categoria.nombre }}"{% endblock %} {% block content %}
Los campos marcados con * son obligatorios.
{% csrf_token %} {% if form.nombre.errors %}
{{ form.nombre.errors }}
{% endif %}
{{ form.nombre }}
{% if form.recorrido.errors %}
{{ form.recorrido.errors }}
{% endif %}
{{ form.recorrido }}
{% if form.descripcion.errors %}
{{ form.descripcion.errors }}
{% endif %}
{{ form.descripcion }}
{% endblock content %}