--- a/ckanext/ga_report/templates/ga_report/publisher/read.html +++ b/ckanext/ga_report/templates/ga_report/publisher/read.html @@ -13,10 +13,10 @@ The table shows the top 20 most viewed datasets belonging to ${c.publisher.title}. </p> <p> - As well as showing the number of views within ${c.month_desc}, it will also show the + As well as showing the number of views for ${c.month_desc}, it will also show the number of visitors that viewed each dataset. </p> - <p>The dataset list page for <a href="${h.url_for(controller='ckanext.dgu.controllers.publisher:PublisherController', action='read', id=c.publisher.name)}">${c.publisher.title}</a> was viewed ${c.publisher_page_views} times during ${c.month_desc}</p> + <p>The dataset list page for <a href="${h.url_for(controller='ckanext.dgu.controllers.publisher:PublisherController', action='read', id=c.publisher.name)}">${c.publisher.title}</a> was viewed ${c.publisher_page_views} times during the selected time period</p> <p>View the <a href="${h.url_for(controller='ckanext.ga_report.controller:GaPublisherReport', action='index')}">publishers</a> leaderboard</p> </li> </py:match> @@ -24,12 +24,13 @@ <div py:match="content"> <h1>Analytics for ${c.publisher.title}</h1> - <h2>Top 20 most viewed datasets</h2> + <h2>Top 20 most viewed datasets of ${c.month_desc}</h2> <p><em>Note: this data does not include API calls</em></p> <form class="form-inline" action="${h.url_for(controller='ckanext.ga_report.controller:GaPublisherReport',action='read',id=c.publisher.name)}" method="get"> <div class="controls"> <select name="month"> + <option value='' py:attrs="{'selected': 'selected' if not c.month else None}">All time</option> <py:for each="val,desc in c.months"> <option value='${val}' py:attrs="{'selected': 'selected' if c.month == val else None}">${desc}</option> </py:for>