removing table-info from featured datasets

This commit is contained in:
Maxime Beauchemin 2015-12-19 07:40:24 -08:00
parent 1893e90e34
commit 973f1a6235
2 changed files with 6 additions and 1 deletions

View File

@ -2,6 +2,7 @@
List of TODO items for Panoramix
## Improvments
* Widget sets ()
* datasource in explore mode could be a dropdown
* [sql] make "Test Connection" test further
* [druid] Allow for post aggregations (ratios!)

View File

@ -1,6 +1,8 @@
{% extends "panoramix/base.html" %}
{% block content %}
<h1><i class='fa fa-star'></i> Featured Datasets </h1>
<div class="header">
<h1><i class='fa fa-star'></i> Featured Datasets </h1>
</div>
<hr/>
<table class="table table-hover dataTable" id="dataset-table" style="display:None">
<thead>
@ -25,6 +27,7 @@
{% endfor %}
</tbody>
</table>
<hr/>
{% endblock %}
{% block head_css %}
@ -42,6 +45,7 @@
"bPaginate": false,
"order": [[ 1, "asc" ]]
});
$('#dataset-table_info').remove();
$('#dataset-table').show();
} );
</script>