Created
May 1, 2013 22:12
-
-
Save marti1125/5498800 to your computer and use it in GitHub Desktop.
error message
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% if (user_form.errors or profile_form.errors) %} | |
<div class="alert alert-error"> | |
The following fields are required (optin is the checkbox in the last panel): | |
<ol> | |
{% for error in user_form.errors %} | |
<li>{{ error|escape }}</li> | |
{% endfor %} | |
{% for error in profile_form.errors %} | |
<li>{{ error|escape }}</li> | |
{% endfor %} | |
</ol> | |
</div> | |
{% endif %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment