Changes between Initial Version and Version 1 of Ticket #19349, comment 2


Ignore:
Timestamp:
Nov 24, 2012, 9:37:28 AM (12 years ago)
Author:
Łukasz Rekucki

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #19349, comment 2

    initial v1  
     1{{{
    12Environment:
    23
     
    2829   object of type 'NoneType' has no len()
    2930   9 :             {% for field in line %}
    30 
    31 
    3231   10 :                 <div{% if not line.fields|length_is:'1' %} class="field-box{% if field.field.name %} field-{{ field.field.name }}{% endif %}{% if not field.is_readonly and field.errors %} errors{% endif %}"{% endif %}>
    33 
    34 
    3532   11 :                     {% if not line.fields|length_is:'1' and not field.is_readonly %}{{ field.errors }}{% endif %}
    36 
    37 
    3833   12 :                     {% if field.is_checkbox %}
    39 
    40 
    4134   13 :                         {{ field.field }}{{ field.label_tag }}
    42 
    43 
    4435   14 :                     {% else %}
    45 
    46 
    4736   15 :                         {{ field.label_tag }}
    48 
    49 
    5037   16 :                         {% if field.is_readonly %}
    51 
    52 
    5338   17 :                             <p>{{ field.contents }}</p>
    54 
    55 
    5639   18 :                         {% else %}
    57 
    58 
    5940   19 :                              {{ field.field }}
    60 
    61 
    6241   20 :                         {% endif %}
    63 
    64 
    6542   21 :                     {% endif %}
    66 
    67 
    6843   22 :                     {% if field.field.help_text %}
    69 
    70 
    7144   23 :                         <p class="help">{{ field.field.help_text|safe }}</p>
    72 
    73 
    7445   24 :                     {% endif %}
    75 
    76 
    7746   25 :                 </div>
    78 
    79 
    8047   26 :             {% endfor %}
    81 
    82 
    8348   27 :         </div>
    84 
    85 
    8649   28 :     {% endfor %}
    87 
    88 
    8950   29 : </fieldset>
    90 
    9151
    9252Traceback:
     
    178138Exception Type: TypeError at /admin/auth/user/1/
    179139Exception Value: object of type 'NoneType' has no len()
     140}}}
Back to Top