diff --git a/crates/frontend/public/templates/pages/addressbook.html b/crates/frontend/public/templates/pages/addressbook.html index 95f3ee3..227524f 100644 --- a/crates/frontend/public/templates/pages/addressbook.html +++ b/crates/frontend/public/templates/pages/addressbook.html @@ -8,6 +8,7 @@

{{ name }}

{% if let Some(description) = addressbook.description %}

{{ description }}

{% endif%} -
{{ addressbook|json }}
+

Debug information

+
{{ addressbook|json(2) }}
{% endblock %} diff --git a/crates/frontend/public/templates/pages/calendar.html b/crates/frontend/public/templates/pages/calendar.html index ba8c403..f2852c0 100644 --- a/crates/frontend/public/templates/pages/calendar.html +++ b/crates/frontend/public/templates/pages/calendar.html @@ -5,7 +5,15 @@ {% block content %} {% let name = calendar.meta.displayname.to_owned().unwrap_or(calendar.id.to_owned()) %} -

{{ calendar.principal }}/{{ name }}

+

+ {{ 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 %} @@ -13,19 +21,7 @@ {{ subscription_url }} {% endif %} -

Components

- - -

Timezone

- -{% if let Some(timezone_id) = calendar.timezone_id %} -

{{ timezone_id }}

-{% endif %} - -
{{ calendar|json }}
+

Debug information

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