I have an application where certain fields that are "closed" in the DB
(boolean field) are hidden in the change_list_results.html file and
displayed in a separate view ("Closed Items").  When I do a search
from the main admin change_list view it will find the item(s) and
display "1 result (89 Total Items)" next to the search field but it
will not display the item in the list below. Is there a way I can do
this?  Am I possibly going about this bass ackwards?  Below is my
change_list_results.html file:

{% if results %}
<table cellspacing="0">
<thead>
<tr>
{% for header in result_headers %}<th{{ header.class_attrib }}>
{% if header.sortable %}<a href="{{ header.url }}">{% endif %}
{{ header.text|capfirst }} {% if header.sortable %}</a>{% endif %}</th>
{% endfor %}
</tr>
</thead>
<tbody>
  {% for result in results %}
  <tr class="row2">{% for item in result %}{% ifnotequal item.closed
"1" %}{{ item|truncatewords_html:3 }}{% endifnotequal %}{% endfor %}</
tr>
{% endfor %}
</tbody>
</table>
{% endif %}

Any suggestions will be greatly appreciated.

-Cheers
--~--~---------~--~----~------------~-------~--~----~
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