Files
zulip/templates/corporate/activity/activity.html
Lauryn Menard efd0d689fc templates: Move activity templates to /templates/corporate/activity.
Also, renames `ad_hoc_query.html` to `activity_table.html`,
`realm_summary_table.html` to `installation_activity_table.html`,
and `activity_details_template.html` to `activity.html`.

Removes the style attribute in the installation activity template
and uses a CSS class, "installation-activity-header", to center the
h3 and p tags instead. This removes an exception from the custom
lint check.
2024-01-30 10:06:48 -08:00

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 %}