app/soc/views/helper/templatetags/forms_helpers.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Wed, 04 Mar 2009 21:27:11 +0000
changeset 1665 9d623ebfff0d
parent 1588 354e685d57fa
child 1678 80411f57f31a
permissions -rw-r--r--
Fix too long lines, remove unused imports and variables, rename too short variables, add missing docstring and fix style in soc.views.helper.templatetags.forms_helpers module. Patch by: Pawel Solyga Reviewed by: to-be-reviewed
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
38
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     1
#!/usr/bin/python2.5
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     2
#
1308
35b75ffcbb37 Partially reverted "Update the copyright notice for 2009."
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1307
diff changeset
     3
# Copyright 2008 the Melange authors.
38
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     4
#
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     5
# Licensed under the Apache License, Version 2.0 (the "License");
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     6
# you may not use this file except in compliance with the License.
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     7
# You may obtain a copy of the License at
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     8
#
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     9
#   http://www.apache.org/licenses/LICENSE-2.0
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    10
#
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    11
# Unless required by applicable law or agreed to in writing, software
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    12
# distributed under the License is distributed on an "AS IS" BASIS,
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    13
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    14
# See the License for the specific language governing permissions and
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    15
# limitations under the License.
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    16
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    17
"""A Django template tag library containing forms helpers.
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    18
"""
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    19
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    20
__authors__ = [
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    21
  '"Todd Larsen" <tlarsen@google.com>',
99
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    22
  '"Pawel Solyga" <pawel.solyga@gmail.com>',
741
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
    23
  '"Sverre Rabbelier" <sverre@rabbelier.nl>',
38
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    24
  ]
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    25
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    26
1371
2d97dbbb4d99 Implemented simple group sorted using numerical ordering
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1360
diff changeset
    27
import re
2d97dbbb4d99 Implemented simple group sorted using numerical ordering
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1360
diff changeset
    28
38
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    29
from django import template
741
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
    30
from django.forms import forms as forms_in
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
    31
from django.utils.encoding import force_unicode
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
    32
from django.utils.html import escape
316
9efdc7bc3565 Add missing blank lines between imports and sort all of the imports.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 273
diff changeset
    33
1371
2d97dbbb4d99 Implemented simple group sorted using numerical ordering
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1360
diff changeset
    34
from soc.logic import dicts
1229
ec3768cbf369 Refactored the picker so that it is more generic
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1214
diff changeset
    35
from soc.views.helper import widgets
ec3768cbf369 Refactored the picker so that it is more generic
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1214
diff changeset
    36
322
6641e941ef1e Fixed imports sorting based on comments for r751.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 316
diff changeset
    37
38
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    38
register = template.Library()
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    39
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    40
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    41
@register.inclusion_tag('soc/templatetags/_field_as_table_row.html')
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    42
def field_as_table_row(field):
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    43
  """Prints a newforms field as a table row.
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    44
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    45
  This function actually does very little, simply passing the supplied
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    46
  form field instance in a simple context used by the _field_as_table_row.html
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    47
  template (which is actually doing all of the work).
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    48
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    49
  See soc/templates/soc/templatetags/_field_as_table_row.html for the CSS
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    50
  styles used by this template tag.
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    51
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    52
  Usage:
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    53
    {% load forms_helpers %}
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    54
    ...
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    55
    <table>
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    56
     {% field_as_table_row form.fieldname %}
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    57
     ...
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    58
    </table>
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    59
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    60
  Args:
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    61
    field: a Django newforms field instance
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    62
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    63
  Returns:
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    64
    a simple context containing the supplied newforms field instance:
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    65
      { 'field': field }
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    66
  """
9a6ee3ab1446 A {% field_as_table_row %} template tag to simplify custom forms.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    67
  return {'field': field}
99
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    68
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    69
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    70
@register.inclusion_tag('soc/templatetags/_readonly_field_as_table_row.html')
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    71
def readonly_field_as_table_row(field_label, field_value):
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    72
  """Prints a field value and it's verbose name as a table row.
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    73
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    74
  This function actually does very little, simply passing the 
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    75
  supplied field_label and field_value in a simple context used by the 
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    76
  _readonly_field_as_table_row.html template (which is actually 
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    77
  doing all of the work).
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    78
744
cd9bf163473c Add missing dots, fix imports sorting and too long lines in different modules. Add TODO in soc.views.models.host module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 741
diff changeset
    79
  See soc/templates/soc/templatetags/_readonly_field_as_table_row.html for
cd9bf163473c Add missing dots, fix imports sorting and too long lines in different modules. Add TODO in soc.views.models.host module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 741
diff changeset
    80
  the CSS styles used by this template tag.
99
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    81
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    82
  Usage:
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    83
    {% load forms_helpers %}
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    84
    ...
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    85
    <table>
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    86
     {% readonly_field_as_table_row field_label field_value %}
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    87
     ...
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    88
    </table>
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    89
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    90
  Args:
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    91
    field_label: label of the field to render
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    92
    field_value: value of the field to render
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    93
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    94
  Returns:
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    95
    a simple context containing the supplied newforms field instance:
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    96
      { 'field_label': field_label',
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    97
        'field_value': field_value'}
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    98
  """
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
    99
  return {'field_label': field_label,
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
   100
          'field_value': field_value}
8c38b546a3cf Added public view support (not using controller yet)
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 54
diff changeset
   101
835
1590625ead55 Add missing blank lines and dots in soc.views.helper.templatetags.forms_helpers module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 794
diff changeset
   102
1665
9d623ebfff0d Fix too long lines, remove unused imports and variables, rename too short variables, add missing docstring and fix style in soc.views.helper.templatetags.forms_helpers module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 1588
diff changeset
   103
@register.inclusion_tag(
9d623ebfff0d Fix too long lines, remove unused imports and variables, rename too short variables, add missing docstring and fix style in soc.views.helper.templatetags.forms_helpers module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 1588
diff changeset
   104
    'soc/templatetags/_readonly_field_as_twoline_table_row.html')
794
19c24508c398 Added _readonly_field_as_twoline_table_row .
Lennard de Rijk <ljvderijk@gmail.com>
parents: 785
diff changeset
   105
def readonly_field_as_twoline_table_row(field_label, field_value):
19c24508c398 Added _readonly_field_as_twoline_table_row .
Lennard de Rijk <ljvderijk@gmail.com>
parents: 785
diff changeset
   106
  """See readonly_field_as_table_row().
19c24508c398 Added _readonly_field_as_twoline_table_row .
Lennard de Rijk <ljvderijk@gmail.com>
parents: 785
diff changeset
   107
  """
19c24508c398 Added _readonly_field_as_twoline_table_row .
Lennard de Rijk <ljvderijk@gmail.com>
parents: 785
diff changeset
   108
  return {'field_label': field_label,
19c24508c398 Added _readonly_field_as_twoline_table_row .
Lennard de Rijk <ljvderijk@gmail.com>
parents: 785
diff changeset
   109
          'field_value': field_value}
19c24508c398 Added _readonly_field_as_twoline_table_row .
Lennard de Rijk <ljvderijk@gmail.com>
parents: 785
diff changeset
   110
1586
8a6caee3c9d6 Add a new template tag _readonly_url_field_as_table_row
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1531
diff changeset
   111
1665
9d623ebfff0d Fix too long lines, remove unused imports and variables, rename too short variables, add missing docstring and fix style in soc.views.helper.templatetags.forms_helpers module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 1588
diff changeset
   112
@register.inclusion_tag(
9d623ebfff0d Fix too long lines, remove unused imports and variables, rename too short variables, add missing docstring and fix style in soc.views.helper.templatetags.forms_helpers module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 1588
diff changeset
   113
    'soc/templatetags/_readonly_url_field_as_table_row.html')
1586
8a6caee3c9d6 Add a new template tag _readonly_url_field_as_table_row
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1531
diff changeset
   114
def readonly_url_field_as_table_row(field_label, field_value):
8a6caee3c9d6 Add a new template tag _readonly_url_field_as_table_row
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1531
diff changeset
   115
  """See readonly_field_as_table_row().
8a6caee3c9d6 Add a new template tag _readonly_url_field_as_table_row
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1531
diff changeset
   116
  """
8a6caee3c9d6 Add a new template tag _readonly_url_field_as_table_row
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1531
diff changeset
   117
  return {'field_label': field_label,
8a6caee3c9d6 Add a new template tag _readonly_url_field_as_table_row
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1531
diff changeset
   118
          'field_value': field_value}
8a6caee3c9d6 Add a new template tag _readonly_url_field_as_table_row
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1531
diff changeset
   119
8a6caee3c9d6 Add a new template tag _readonly_url_field_as_table_row
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1531
diff changeset
   120
8a6caee3c9d6 Add a new template tag _readonly_url_field_as_table_row
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1531
diff changeset
   121
@register.inclusion_tag(
8a6caee3c9d6 Add a new template tag _readonly_url_field_as_table_row
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1531
diff changeset
   122
    'soc/templatetags/_readonly_url_field_as_twoline_table_row.html')
8a6caee3c9d6 Add a new template tag _readonly_url_field_as_table_row
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1531
diff changeset
   123
def readonly_url_field_as_twoline_table_row(field_label, field_value):
8a6caee3c9d6 Add a new template tag _readonly_url_field_as_table_row
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1531
diff changeset
   124
  """See readonly_field_as_table_row().
8a6caee3c9d6 Add a new template tag _readonly_url_field_as_table_row
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1531
diff changeset
   125
  """
8a6caee3c9d6 Add a new template tag _readonly_url_field_as_table_row
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1531
diff changeset
   126
  return {'field_label': field_label,
8a6caee3c9d6 Add a new template tag _readonly_url_field_as_table_row
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1531
diff changeset
   127
          'field_value': field_value}
8a6caee3c9d6 Add a new template tag _readonly_url_field_as_table_row
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1531
diff changeset
   128
8a6caee3c9d6 Add a new template tag _readonly_url_field_as_table_row
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1531
diff changeset
   129
1665
9d623ebfff0d Fix too long lines, remove unused imports and variables, rename too short variables, add missing docstring and fix style in soc.views.helper.templatetags.forms_helpers module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 1588
diff changeset
   130
@register.inclusion_tag(
9d623ebfff0d Fix too long lines, remove unused imports and variables, rename too short variables, add missing docstring and fix style in soc.views.helper.templatetags.forms_helpers module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 1588
diff changeset
   131
    'soc/templatetags/_readonly_safe_field_as_table_row.html')
1588
354e685d57fa Added a _readonly_safe_field_as_table_row template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1586
diff changeset
   132
def readonly_safe_field_as_table_row(field_label, field_value):
354e685d57fa Added a _readonly_safe_field_as_table_row template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1586
diff changeset
   133
  """See readonly_field_as_table_row().
354e685d57fa Added a _readonly_safe_field_as_table_row template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1586
diff changeset
   134
  """
354e685d57fa Added a _readonly_safe_field_as_table_row template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1586
diff changeset
   135
  return {'field_label': field_label,
354e685d57fa Added a _readonly_safe_field_as_table_row template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1586
diff changeset
   136
          'field_value': field_value}
354e685d57fa Added a _readonly_safe_field_as_table_row template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1586
diff changeset
   137
354e685d57fa Added a _readonly_safe_field_as_table_row template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1586
diff changeset
   138
354e685d57fa Added a _readonly_safe_field_as_table_row template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1586
diff changeset
   139
@register.inclusion_tag(
354e685d57fa Added a _readonly_safe_field_as_table_row template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1586
diff changeset
   140
    'soc/templatetags/_readonly_safe_field_as_twoline_table_row.html')
354e685d57fa Added a _readonly_safe_field_as_table_row template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1586
diff changeset
   141
def readonly_safe_field_as_twoline_table_row(field_label, field_value):
354e685d57fa Added a _readonly_safe_field_as_table_row template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1586
diff changeset
   142
  """See readonly_field_as_table_row().
354e685d57fa Added a _readonly_safe_field_as_table_row template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1586
diff changeset
   143
  """
354e685d57fa Added a _readonly_safe_field_as_table_row template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1586
diff changeset
   144
  return {'field_label': field_label,
354e685d57fa Added a _readonly_safe_field_as_table_row template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1586
diff changeset
   145
          'field_value': field_value}
354e685d57fa Added a _readonly_safe_field_as_table_row template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1586
diff changeset
   146
354e685d57fa Added a _readonly_safe_field_as_table_row template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1586
diff changeset
   147
1341
1b4b4a9ac17b Add an as_readonly_table filter
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1308
diff changeset
   148
@register.inclusion_tag('soc/templatetags/_as_readonly_table.html',
1b4b4a9ac17b Add an as_readonly_table filter
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1308
diff changeset
   149
                        takes_context=True)
1b4b4a9ac17b Add an as_readonly_table filter
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1308
diff changeset
   150
def as_readonly_table(context, form):
1b4b4a9ac17b Add an as_readonly_table filter
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1308
diff changeset
   151
  """Outputs a form as a properly formatted html table.
1b4b4a9ac17b Add an as_readonly_table filter
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1308
diff changeset
   152
1b4b4a9ac17b Add an as_readonly_table filter
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1308
diff changeset
   153
  Args:
1b4b4a9ac17b Add an as_readonly_table filter
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1308
diff changeset
   154
    form: the form that should be converted to a table
1b4b4a9ac17b Add an as_readonly_table filter
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1308
diff changeset
   155
  """
1b4b4a9ac17b Add an as_readonly_table filter
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1308
diff changeset
   156
1b4b4a9ac17b Add an as_readonly_table filter
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1308
diff changeset
   157
  # create the bound fields
1b4b4a9ac17b Add an as_readonly_table filter
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1308
diff changeset
   158
  fields = [forms_in.BoundField(form, field, name) for name, field in
1b4b4a9ac17b Add an as_readonly_table filter
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1308
diff changeset
   159
            form.fields.items() if field]
1b4b4a9ac17b Add an as_readonly_table filter
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1308
diff changeset
   160
1b4b4a9ac17b Add an as_readonly_table filter
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1308
diff changeset
   161
  return {'fields': fields}
1b4b4a9ac17b Add an as_readonly_table filter
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1308
diff changeset
   162
935
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   163
@register.inclusion_tag('soc/templatetags/_as_table.html', takes_context=True)
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   164
def as_table(context, form):
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   165
  """Outputs a form as a properly formatted html table.
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   166
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   167
  Args:
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   168
    form: the form that should be converted to a table
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   169
  """
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   170
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   171
  return as_table_helper(context, form)
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   172
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   173
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   174
@register.inclusion_tag('soc/templatetags/_as_twoline_table.html',
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   175
                        takes_context=True)
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   176
def as_twoline_table(context, form):
835
1590625ead55 Add missing blank lines and dots in soc.views.helper.templatetags.forms_helpers module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 794
diff changeset
   177
  """Outputs a form as a properly formatted html table.
741
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   178
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   179
  Args:
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   180
    form: the form that should be converted to a table
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   181
  """
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   182
935
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   183
  return as_table_helper(context, form)
785
c740d0129cce Added a twoline_edit.html page
Sverre Rabbelier <srabbelier@gmail.com>
parents: 754
diff changeset
   184
835
1590625ead55 Add missing blank lines and dots in soc.views.helper.templatetags.forms_helpers module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 794
diff changeset
   185
935
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   186
def as_table_helper(context, form):
1665
9d623ebfff0d Fix too long lines, remove unused imports and variables, rename too short variables, add missing docstring and fix style in soc.views.helper.templatetags.forms_helpers module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 1588
diff changeset
   187
  """See as_table().
9d623ebfff0d Fix too long lines, remove unused imports and variables, rename too short variables, add missing docstring and fix style in soc.views.helper.templatetags.forms_helpers module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 1588
diff changeset
   188
  """
9d623ebfff0d Fix too long lines, remove unused imports and variables, rename too short variables, add missing docstring and fix style in soc.views.helper.templatetags.forms_helpers module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 1588
diff changeset
   189
  
741
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   190
  fields = []
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   191
  hidden_fields = []
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   192
  hidden_fields_errors = []
1665
9d623ebfff0d Fix too long lines, remove unused imports and variables, rename too short variables, add missing docstring and fix style in soc.views.helper.templatetags.forms_helpers module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 1588
diff changeset
   193
  
9d623ebfff0d Fix too long lines, remove unused imports and variables, rename too short variables, add missing docstring and fix style in soc.views.helper.templatetags.forms_helpers module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 1588
diff changeset
   194
  # entity = context['entity']
741
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   195
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   196
  # Iterate over all fields and prepare it for adding 
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   197
  for name, field in form.fields.items():
1282
005be2cf889d Do not attempt to render a field if it is disabled
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1271
diff changeset
   198
    if not field:
005be2cf889d Do not attempt to render a field if it is disabled
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1271
diff changeset
   199
      continue
005be2cf889d Do not attempt to render a field if it is disabled
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1271
diff changeset
   200
741
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   201
    bf = forms_in.BoundField(form, field, name)
1229
ec3768cbf369 Refactored the picker so that it is more generic
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1214
diff changeset
   202
    attrs = {}
935
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   203
1229
ec3768cbf369 Refactored the picker so that it is more generic
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1214
diff changeset
   204
    if isinstance(field, widgets.ReferenceField):
ec3768cbf369 Refactored the picker so that it is more generic
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1214
diff changeset
   205
      attrs = field.rf
741
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   206
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   207
    # If the field is hidden we display it elsewhere
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   208
    if not bf.is_hidden:
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   209
      example_text = ''
1371
2d97dbbb4d99 Implemented simple group sorted using numerical ordering
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1360
diff changeset
   210
      group = '0. '
2d97dbbb4d99 Implemented simple group sorted using numerical ordering
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1360
diff changeset
   211
1360
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   212
      if hasattr(field, 'group'):
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   213
        group = field.group
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   214
741
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   215
      if hasattr(field, 'example_text'):
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   216
        example_text = force_unicode(field.example_text)
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   217
1360
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   218
      item = {
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   219
          'field': bf,
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   220
          'required': field.required,
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   221
          'example_text': example_text,
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   222
          'group': group,
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   223
          }
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   224
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   225
      item.update(attrs)
741
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   226
      fields.append(item)
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   227
    else:
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   228
      hidden_fields.append(unicode(bf))
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   229
1665
9d623ebfff0d Fix too long lines, remove unused imports and variables, rename too short variables, add missing docstring and fix style in soc.views.helper.templatetags.forms_helpers module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 1588
diff changeset
   230
      for error in bf.errors:
9d623ebfff0d Fix too long lines, remove unused imports and variables, rename too short variables, add missing docstring and fix style in soc.views.helper.templatetags.forms_helpers module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 1588
diff changeset
   231
        item = (name, force_unicode(error))
741
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   232
        hidden_fields_errors.append(item)
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   233
1371
2d97dbbb4d99 Implemented simple group sorted using numerical ordering
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1360
diff changeset
   234
  grouped = dicts.groupby(fields, 'group')
2d97dbbb4d99 Implemented simple group sorted using numerical ordering
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1360
diff changeset
   235
  rexp = re.compile(r"\d+. ")
1665
9d623ebfff0d Fix too long lines, remove unused imports and variables, rename too short variables, add missing docstring and fix style in soc.views.helper.templatetags.forms_helpers module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 1588
diff changeset
   236
  fields = [(rexp.sub('', key), grouped[key]) for key in sorted(grouped)]
1371
2d97dbbb4d99 Implemented simple group sorted using numerical ordering
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1360
diff changeset
   237
935
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   238
  context.update({
741
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   239
      'top_errors': form.non_field_errors() or '',
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   240
      'hidden_field_errors': hidden_fields_errors or '',
1371
2d97dbbb4d99 Implemented simple group sorted using numerical ordering
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1360
diff changeset
   241
      'groups': fields if fields else '',
741
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   242
      'hidden_fields': hidden_fields or '',
935
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   243
      })
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   244
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   245
  return context
741
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   246
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   247
935
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   248
@register.inclusion_tag('soc/templatetags/_as_table_row.html',
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   249
                        takes_context=True)
1360
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   250
def as_table_row(context, item):
835
1590625ead55 Add missing blank lines and dots in soc.views.helper.templatetags.forms_helpers module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 794
diff changeset
   251
  """Outputs a field as a properly formatted html row.
741
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   252
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   253
  Args:
1360
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   254
    item: the item that is being rendered
741
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   255
  """
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   256
1360
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   257
  return as_table_row_helper(context, item)
935
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   258
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   259
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   260
@register.inclusion_tag('soc/templatetags/_as_twoline_table_row.html',
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   261
                        takes_context=True)
1360
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   262
def as_twoline_table_row(context, item):
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   263
  """See as_table_row().
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   264
  """
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   265
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   266
  return as_table_row_helper(context, item)
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   267
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   268
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   269
def as_table_row_helper(context, item):
935
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   270
  """See as_table_row().
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   271
  """
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   272
1360
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   273
  field = item['field']
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   274
  required = item['required']
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   275
  example_text = item['example_text']
835
1590625ead55 Add missing blank lines and dots in soc.views.helper.templatetags.forms_helpers module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 794
diff changeset
   276
1360
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   277
  form = context['form']
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   278
  entity = context['entity']
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   279
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   280
  reference = item.get('reference_url')
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   281
  filter = item.get('filter')
f62c462037b6 Added grouping support to all forms, converted role as example
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1341
diff changeset
   282
  filter_fields = item.get('filter_fields')
785
c740d0129cce Added a twoline_edit.html page
Sverre Rabbelier <srabbelier@gmail.com>
parents: 754
diff changeset
   283
741
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   284
  # Escape and cache in local variable.
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   285
  errors = [force_unicode(escape(error)) for error in field.errors]
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   286
1229
ec3768cbf369 Refactored the picker so that it is more generic
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1214
diff changeset
   287
935
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   288
  if reference:
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   289
    from soc.views.helper import redirects
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   290
    params = {
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   291
        'url_name': reference,
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   292
        }
1229
ec3768cbf369 Refactored the picker so that it is more generic
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1214
diff changeset
   293
ec3768cbf369 Refactored the picker so that it is more generic
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1214
diff changeset
   294
    if entity:
ec3768cbf369 Refactored the picker so that it is more generic
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1214
diff changeset
   295
      args = {}
1301
58f18ea60093 Added a filter_fields parameter to the ReferenceField widget
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1282
diff changeset
   296
      for filter_field, filter_value in filter_fields.iteritems():
58f18ea60093 Added a filter_fields parameter to the ReferenceField widget
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1282
diff changeset
   297
        args[filter_field] = filter_value
1229
ec3768cbf369 Refactored the picker so that it is more generic
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1214
diff changeset
   298
      for filter_field in (i for i in filter if hasattr(entity, i)):
ec3768cbf369 Refactored the picker so that it is more generic
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1214
diff changeset
   299
        args[filter_field] = getattr(entity, filter_field)
ec3768cbf369 Refactored the picker so that it is more generic
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1214
diff changeset
   300
1271
3bd4a3b527d7 Add '__scoped__' as a special filter
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1229
diff changeset
   301
      if '__scoped__' in filter:
3bd4a3b527d7 Add '__scoped__' as a special filter
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1229
diff changeset
   302
        args['scope_path'] = entity.key().name()
3bd4a3b527d7 Add '__scoped__' as a special filter
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1229
diff changeset
   303
1229
ec3768cbf369 Refactored the picker so that it is more generic
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1214
diff changeset
   304
      params['args'] = '&'.join(['%s=%s' % item for item in args.iteritems()])
ec3768cbf369 Refactored the picker so that it is more generic
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1214
diff changeset
   305
ec3768cbf369 Refactored the picker so that it is more generic
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1214
diff changeset
   306
    select_url = redirects.getSelectRedirect(params)
935
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   307
741
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   308
  if field.label:
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   309
    label = escape(force_unicode(field.label))
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   310
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   311
    # Only add the suffix if the label does not end in punctuation.
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   312
    if form.label_suffix and (label[-1] not in ':?.!'):
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   313
      label += form.label_suffix
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   314
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   315
    label = field.label_tag(label) or ''
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   316
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   317
  field_class_type = 'formfield%slabel' % ('error' if errors else '')
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   318
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   319
  help_text = field.help_text
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   320
935
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   321
  context.update({
741
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   322
      'help_text': force_unicode(help_text) if help_text else '',
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   323
      'field_class_type': field_class_type,
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   324
      'label': force_unicode(label) if field.label else '',
1271
3bd4a3b527d7 Add '__scoped__' as a special filter
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1229
diff changeset
   325
      'field': field,
1214
7fb705534dd1 Include the field_id in the context of _as_table_helper
Sverre Rabbelier <srabbelier@gmail.com>
parents: 959
diff changeset
   326
      'field_id': field.auto_id,
741
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   327
      'required': required,
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   328
      'example_text': example_text,
935
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   329
      'select_url': select_url if reference else None,
741
2dc2c65c5f76 Converted as_table to be a template tag
Sverre Rabbelier <srabbelier@gmail.com>
parents: 728
diff changeset
   330
      'errors': errors,
935
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   331
      })
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   332
09f47e08f805 Adust the as_table tag to render a pick link if appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 835
diff changeset
   333
  return context