{% extends 'core/base.html' %} {% load i18n msg_box static html_helpers %} {% block page_title %}{% trans "iCal Feeds" %}{% endblock page_title %} {% block browser_title %}{% trans "iCal Feeds" %}{% endblock browser_title %} {% block content %} {% trans "These are URLs for different Calendar Feeds in the iCal (.ics) format. You can create as many as you want and import them in your calendar software." as msg %} {% msg_box msg=msg status="info" %} {% trans "Create iCal URL" %}

{% trans "Your iCal URLs" %}

{% for object in object_list %}
{{ object }} {% generate_random_id "ical-copy-" as id %} {% include "core/partials/copy_button.html" with classes="secondary-content btn-flat btn-small secondary-color-text btn-smaller-padding" target=id %}

{{ object.ical_feed_object.title }} – {{ object.ical_feed_object.description }}

{% endfor %}
{% endblock content %}