diff --git a/piwik/indico_piwik/__init__.py b/piwik/indico_piwik/__init__.py index 9f483d7..519fb79 100644 --- a/piwik/indico_piwik/__init__.py +++ b/piwik/indico_piwik/__init__.py @@ -65,7 +65,7 @@ class PiwikPlugin(IndicoPlugin): if contrib_id: contribution = ConferenceHolder().getById(params['event_id']).getContributionById(contrib_id) params['contrib_id'] = contribution.getUniqueId() - return render_plugin_template('event_statistics_hook.html', **params) + return render_plugin_template('events_tracking.html', **params) def add_sidemenu_item(self, event): menu_item = SideMenuItem(_("Piwik Statistics"), url_for_plugin('piwik.view', event)) diff --git a/piwik/indico_piwik/templates/event_statistics_hook.html b/piwik/indico_piwik/templates/events_tracking.html similarity index 100% rename from piwik/indico_piwik/templates/event_statistics_hook.html rename to piwik/indico_piwik/templates/events_tracking.html