{% extends "principal.html" %} {% load staticfiles %} {% load url from future %} {% block jquery %} function ejecutaForm(enlace){ document.getElementById("frmPanel").action = enlace; document.getElementById("frmPanel").submit(); } function validaDatos(){ if (document.getElementById("nombre").value.length == 0){ alert('Falta capturar el nombre.'); } else { ejecutaForm('/cat/estados/1'); } } function findEstidades(Pais){ ejecutaForm('/cat/estados/2'); } {% endblock %} {% block breadcrumbs %}
  • Inicio
  • Estados
  • {% endblock %} {% block contenido %} {% if Grabo == '0' %} {% endif %} {% if Grabo == '1' %} {% endif %}
    {% csrf_token %}
    Catálogo de Estados
    Estados Existentes
    {% for Estado in Estados %} {% endfor %}
    {{Estado.nombre}}
    {% endblock %}