Skip to content

Commit

Permalink
removing table-info from featured datasets
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Dec 19, 2015
1 parent 1893e90 commit 973f1a6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!)
Expand Down
6 changes: 5 additions & 1 deletion panoramix/templates/panoramix/featured_datasets.html
Original file line number Diff line number Diff line change
@@ -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>
Expand All @@ -25,6 +27,7 @@ <h4>{{ dataset.table_name }}</h4>
{% endfor %}
</tbody>
</table>
<hr/>
{% endblock %}

{% block head_css %}
Expand All @@ -42,6 +45,7 @@ <h4>{{ dataset.table_name }}</h4>
"bPaginate": false,
"order": [[ 1, "asc" ]]
});
$('#dataset-table_info').remove();
$('#dataset-table').show();
} );
</script>
Expand Down

0 comments on commit 973f1a6

Please sign in to comment.