{% 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/paises/1'); } } {% endblock %} {% block breadcrumbs %}
  • Inicio
  • Paises
  • {% endblock %} {% block contenido %} {% if Grabo == '0' %} {% endif %} {% if Grabo == '1' %} {% endif %}
    {% csrf_token %}
    Catálogo de Países
    Países Existentes
    {% for Pais in Paises %} {% endfor %}
    {{Pais.nombre}}
    {% endblock %}