Fix column names in General tab for /activity.

(imported from commit 6be24be9ad022f2b0aa6fddefffd772dfb2ebfd6)
This commit is contained in:
Steve Howell 2013-09-26 16:18:16 -04:00
parent 902185f8fb
commit a9b3b3ad23
1 changed files with 4 additions and 4 deletions

View File

@ -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>