# HG changeset patch # User Todd Larsen # Date 1232504287 0 # Node ID f7b5838094d073d75daa4202263d06e488c296d6 # Parent cfb57fe35d3cca776cce72da24ff7b7da58178dc Give error messages more room in the existing form field "as_table" templates. Patch by: Todd Larsen Review by: to-be-reviewed diff -r cfb57fe35d3c -r f7b5838094d0 app/soc/templates/soc/templatetags/_as_table_row.html --- a/app/soc/templates/soc/templatetags/_as_table_row.html Wed Jan 21 02:14:05 2009 +0000 +++ b/app/soc/templates/soc/templatetags/_as_table_row.html Wed Jan 21 02:18:07 2009 +0000 @@ -14,8 +14,7 @@ {% if errors %} -   - + {% for error in errors %} {{ error }}
{% endfor %} diff -r cfb57fe35d3c -r f7b5838094d0 app/soc/templates/soc/templatetags/_field_as_table_row.html --- a/app/soc/templates/soc/templatetags/_field_as_table_row.html Wed Jan 21 02:14:05 2009 +0000 +++ b/app/soc/templates/soc/templatetags/_field_as_table_row.html Wed Jan 21 02:18:07 2009 +0000 @@ -13,8 +13,7 @@ {% endcomment %} {% if field.errors %} -   - + {{ field.errors|join:"
" }}