mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-13 21:42:34 +00:00
15 lines
375 B
HTML
15 lines
375 B
HTML
{% extends "layouts/default.html" %}
|
|
|
|
{% block imports %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% let name = addressbook.displayname.to_owned().unwrap_or(addressbook.id.to_owned()) %}
|
|
<h1>{{ name }}</h1>
|
|
{% if let Some(description) = addressbook.description %}<p>{{ description }}</p>{% endif%}
|
|
|
|
<h2>Debug information</h2>
|
|
<pre>{{ addressbook|json(2) }}</pre>
|
|
|
|
{% endblock %}
|