Hello, I have an admin action which produces a table of selected items. I used the admin base_site template so I have the ability to go back easily.
I did: {% extends "admin/base_site.html" %} ... {% block content %} <div id="participants_list"> <div> <table id="myTable" class="tablesorter" border="0" cellspacing="1" cellpadding=“1”> {% for participant in participants %} ... {% endfor %} The problem is that the table rows at the beginning of the page get printed over with the header from the admin on every page except the first one. I don’t know why the admin header gets printed on all of the pages anyways. IE and Firefox are doing this. The problem does not occur on Safari (tested on Mac only). Does anyone know where this behavior come from and how to avoid it? thanks -- 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.