Hello,

my site is almost ready, but i still getting some issues along the
way. To day i am testing the admin module and i found out some issues.
All models that use some foreign key presents a message like this:

TemplateSyntaxError at /ftrTool/admin/ftrTool/dependency/3/

Caught an exception while rendering: 'Feature' object has no attribute
'serializable_value'


The error raises at line 12, below:

2        {% if fieldset.name %}<h2>{{ fieldset.name }}</h2>{% endif %}
3       {% if fieldset.description %}<div class="description">
{{ fieldset.description|safe }}</div>{% endif %}
4       {% for line in fieldset %}
5       <div class="form-row{% if line.errors %} errors{% endif %} {% for
field in line %}{{ field.field.name }} {% endfor %} ">
6       {{ line.errors }}
7       {% for field in line %}
8       <div{% if not line.fields|length_is:"1" %} class="field-box"{%
endif %}>
9       {% if field.is_checkbox %}
10      {{ field.field }}{{ field.label_tag }}
11      {% else %}
12      {{ field.label_tag }}{{ field.field }}
13      {% endif %}
14      {% if field.field.field.help_text %}<p class="help">
{{ field.field.field.help_text|safe }}</p>{% endif %}
15      </div>
16      {% endfor %}
17      </div>
18      {% endfor %}
19      </fieldset>
20

How do i get rid of this error ?

Att
Thiago.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to