linuxsoftware / ls.joyous

A calendar application for Wagtail
BSD 3-Clause "New" or "Revised" License
74 stars 35 forks source link

Make the Export functionality optional #23

Closed JorneVL closed 5 years ago

JorneVL commented 5 years ago

The export function to iCal is unwanted in my use case. Is it possible to disable this per page or in total with a setting? I haven't found anything

linuxsoftware commented 5 years ago

To do this override the cal_footer and event_footer blocks of the templates you want to change.

i.e. add the following files to your app's template directory joyous/calendar_base.html {% block cal_footer %}{% endblock cal_footer %}

joyous/calendar_list_upcoming.html {% block cal_footer %}{% endblock cal_footer %}

joyous/event_base.html {% block event_footer %}{% endblock event_footer %}