{% extends "layouts/default.html" %} {% block imports %} {% endblock %} {% block content %} {% let name = calendar.meta.displayname.to_owned().unwrap_or(calendar.id.to_owned()) %}

{{ calendar.principal }}/{{ name }}
{% for comp in calendar.components %} {{ comp }} {% endfor %}

{% if let Some(description) = calendar.meta.description %}

{{ description }}

{% endif%} {% if let Some(subscription_url) = calendar.subscription_url %}

Subscription URL

{{ subscription_url }} {% endif %}

Debug information

{{ calendar|json(2) }}
{%endblock %}