From ab71edcb7ae3abc28558530ff8e188a4a1098284 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Avil=C3=A9s?= Date: Mon, 6 Oct 2014 17:18:28 +0200 Subject: [PATCH] Rename events tracking template --- piwik/indico_piwik/__init__.py | 2 +- .../{event_statistics_hook.html => events_tracking.html} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename piwik/indico_piwik/templates/{event_statistics_hook.html => events_tracking.html} (100%) 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