# HG changeset patch # User Todd Larsen # Date 1212167682 0 # Node ID c0151a1f62e5ec6964fb9342fd0b4e671f81ccb0 # Parent fa3545f99c02b3403277b80cd7c7fc5a51b3b921 A {% field_as_table_row %} template tag to simplify custom forms. (This template file was missed in the r348 commit.) Patch by: Todd Larsen Review by: Pawel Solyga Review issue: 221 Review URL: http://codereviews.googleopensourceprograms.com/221 diff -r fa3545f99c02 -r c0151a1f62e5 soc/templates/soc/templatetags/_field_as_table_row.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/soc/templates/soc/templatetags/_field_as_table_row.html Fri May 30 17:14:42 2008 +0000 @@ -0,0 +1,37 @@ +{% comment %} +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +{% endcomment %} +{% if field.errors %} + +   +   + + {{ field.errors|join:"
" }} + + +{% endif %} + + + + + + {% if field.field.required %}required{% endif %} + + + {{ field }} + + + {{ field.help_text }} + +