Fixed regression in UI

This commit is contained in:
William DURAND 2012-04-13 12:29:00 +02:00
parent 4a72fffbab
commit 1e178669b7

View File

@ -15,7 +15,7 @@
</ul> </ul>
</div> </div>
<div class="content" style="display: none;"> <div class="content" style="display: none;">
{% if data.requirements is defined %} {% if data.requirements is defined and data.requirements is not empty %}
<h4>Requirements</h4> <h4>Requirements</h4>
<table class="fullwidth"> <table class="fullwidth">
<thead> <thead>
@ -35,7 +35,7 @@
</table> </table>
{% endif %} {% endif %}
{% if data.filters is defined %} {% if data.filters is defined and data.filters is not empty %}
<h4>Filters</h4> <h4>Filters</h4>
<table class="fullwidth"> <table class="fullwidth">
<thead> <thead>
@ -61,7 +61,7 @@
</table> </table>
{% endif %} {% endif %}
{% if data.parameters is defined %} {% if data.parameters is defined and data.parameters is not empty %}
<h4>Parameters</h4> <h4>Parameters</h4>
<table class='fullwidth'> <table class='fullwidth'>
<thead> <thead>