mirror of https://github.com/zulip/zulip.git
23 lines
414 B
HTML
23 lines
414 B
HTML
{% extends "zerver/base.html" %}
|
|
{% set entrypoint = "activity" %}
|
|
|
|
{# Template for installation activity pages #}
|
|
|
|
{% block title %}
|
|
<title>{{ title }} | Zulip analytics</title>
|
|
{% endblock %}
|
|
|
|
|
|
{% block content %}
|
|
<div class="activity-page">
|
|
{% if not is_home %}
|
|
<a class="show-all" href="/activity">Home</a>
|
|
<br />
|
|
{% endif %}
|
|
|
|
<div>
|
|
{{ data|safe }}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|