diff --git a/MANIFEST.in b/MANIFEST.in index a0a232ab..c23a45a6 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -6,7 +6,7 @@ recursive-include chrono/manager/static *.css *.scss *.js # templates recursive-include chrono/api/templates *.html -recursive-include chrono/manager/templates *.html *.csv +recursive-include chrono/manager/templates *.html *.txt include COPYING README include MANIFEST.in diff --git a/chrono/manager/templates/chrono/manager_sample_events.csv b/chrono/manager/templates/chrono/manager_sample_events.txt similarity index 100% rename from chrono/manager/templates/chrono/manager_sample_events.csv rename to chrono/manager/templates/chrono/manager_sample_events.txt diff --git a/chrono/manager/views.py b/chrono/manager/views.py index 3e9696cd..80a59e41 100644 --- a/chrono/manager/views.py +++ b/chrono/manager/views.py @@ -570,7 +570,7 @@ agenda_add_event = AgendaAddEventView.as_view() class AgendaImportEventsSampleView(TemplateView): - template_name = 'chrono/manager_sample_events.csv' + template_name = 'chrono/manager_sample_events.txt' content_type = 'text/csv' def get_context_data(self, **kwargs):