Skip to content
This repository has been archived by the owner on Feb 1, 2018. It is now read-only.

Commit

Permalink
Merge pull request #255 from ossreleasefeed/bug804401-jquery-ui-error
Browse files Browse the repository at this point in the history
fixing HTML structure fixes bug 804401
  • Loading branch information
rhelmer committed Oct 31, 2012
2 parents 55bc27c + 13e57fb commit 97e892c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions crashstats/crashstats/templates/crashstats/report_index.html
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ <h2>Related Bugs</h2>
</div>
</div><!-- /bugzilla -->

{% if parsed_dump.threads and parsed_dump.modules %}
{% if parsed_dump.threads %}
<div id="frames">
<h2>Crashing Thread</h2>
<table class="data-table">
Expand Down Expand Up @@ -352,8 +352,11 @@ <h2>Thread {{ thread_num }}</h2>
</div>
</div><!-- /frames -->
</div><!-- /details -->
{% endif %}

</div>
<div id="modules" class="ui-tabs-hide">
{% if parsed_dump.modules %}
<table class="tablesorter data-table" id="modules-list">
<thead>
<tr>
Expand All @@ -374,8 +377,8 @@ <h2>Thread {{ thread_num }}</h2>
{% endfor %}
</tbody>
</table>
{% endif %}
</div><!-- /modules -->
{% endif %}

<div id="rawdump" class="ui-tabs-hide">
<div class="code">{{ report.dump }}</div>
Expand Down

0 comments on commit 97e892c

Please sign in to comment.