--- a/ckanext/ga_report/templates/ga_report/publisher/index.html +++ b/ckanext/ga_report/templates/ga_report/publisher/index.html @@ -24,8 +24,8 @@ <py:def function="optional_head"> <link rel="stylesheet" type="text/css" href="/scripts/vendor/rickshaw.min.css"/> - <link rel="stylesheet" type="text/css" href="/css/ga_report.css"/> - <script type="text/javascript" src="/scripts/ckanext_ga_reports.js"></script> + <link rel="stylesheet" type="text/css" href="/css/ga_report.css?1"/> + <script type="text/javascript" src="/scripts/ckanext_ga_reports.js?1"></script> <script type="text/javascript" src="/scripts/vendor/jquery.sparkline.modified.js"></script> <script type="text/javascript" src="/scripts/rickshaw_ie7_shim.js"></script> <script type="text/javascript" src="/scripts/vendor/d3.v2.js"></script> @@ -48,17 +48,17 @@ </div> </form> - <table class="table table-condensed table-bordered table-striped"> + <table class="ga-reports-table table table-condensed table-bordered table-striped"> <tr> <th>Publisher</th> - <th>Dataset Views</th> + <th class="td-numeric">Dataset Views</th> </tr> <py:for each="publisher, views, visits in c.top_publishers"> <tr> <td> ${h.link_to(publisher.title, h.url_for(controller='ckanext.ga_report.controller:GaDatasetReport', action='read_publisher', id=publisher.name) + (("?month=" + c.month) if c.month else ''))} </td> - <td>${views}</td> + <td class="td-numeric">${views}</td> </tr> </py:for> </table>