mirror of https://github.com/zulip/zulip.git
Fix column names in General tab for /activity.
(imported from commit 6be24be9ad022f2b0aa6fddefffd772dfb2ebfd6)
This commit is contained in:
parent
902185f8fb
commit
a9b3b3ad23
|
@ -5,8 +5,8 @@
|
||||||
<thead class="activity_head">
|
<thead class="activity_head">
|
||||||
<tr>
|
<tr>
|
||||||
<th>Domain</th>
|
<th>Domain</th>
|
||||||
<th>Active User Count</th>
|
<th>Active users</th>
|
||||||
<th>User Profile Count</th>
|
<th>Total users</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
|
||||||
|
@ -21,12 +21,12 @@
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
{# Active User Count #}
|
{# Active users #}
|
||||||
<td class="number">
|
<td class="number">
|
||||||
{{ row.active_user_count }}
|
{{ row.active_user_count }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
{# User Profile Count #}
|
{# Total users #}
|
||||||
<td class="number">
|
<td class="number">
|
||||||
{{ row.user_profile_count }}
|
{{ row.user_profile_count }}
|
||||||
</td>
|
</td>
|
||||||
|
|
Loading…
Reference in New Issue