A {% field_as_table_row %} template tag to simplify custom forms. (This
authorTodd Larsen <tlarsen@google.com>
Fri, 30 May 2008 17:14:42 +0000
changeset 40 c0151a1f62e5
parent 39 fa3545f99c02
child 41 74e1f65dd960
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
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 %}
+<tr>
+ <td>&nbsp;</td>
+ <td>&nbsp;</td>
+ <td colspan="2" class="formfielderror">
+  {{ field.errors|join:"<br />" }}
+ </td>
+</tr>
+{% endif %}
+<tr>
+ <td class="formfieldlabel">
+  <label for="{{ field.auto_id }}">{{ field.label }}
+  </label> 
+ </td>
+ <td class="formfieldrequired">
+   {% if field.field.required %}required{% endif %}
+ </td>
+ <td>
+  {{ field }}
+ </td>
+ <td class="formfieldhelptext">
+  {{ field.help_text }}
+ </td>
+</tr>