You are correct.

But the form perform like if have error. In the template;

{% if form.has_errors %}
    {% for e in errors.items %}
    <li>Field "{{ e.0 }}": {{ e.1|join:", " }}</li>
    {% endfor %}
{{ form.error }}
<p class="error">Fallo el ingreso. Revise su clave y usuario</p>
{% endif %}


When I post this show, but I'm unable to see *what* error is. Each
field have:

    <label for="id_username">Nombre de usuario:</label>
    {{ form.username }}
    {% if form.username.errors %}
      *** {{ form.username.errors|join:", " }}
    {% endif %}


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to