mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
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.
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 %}
|