Reorganize /activity page to put information I care about closer to the left.

Right now the table is too wide for my screen and I have to scroll it
to see some stuff I'm actually pretty interested in seeing; this
rearranges things to make that less the case.

(imported from commit b06088c59d9ba21ecc24fa55367226a2aa09d907)
This commit is contained in:
Waseem Daher
2013-02-13 10:50:35 -05:00
parent d3f92eeab6
commit 2f43f0e797

View File

@@ -30,13 +30,13 @@
<th>Name</th> <th>Name</th>
<th>Email</th> <th>Email</th>
<th>Realm</th> <th>Realm</th>
<th>Last get_updates</th>
<th>Last send_message</th> <th>Last send_message</th>
<th>Messages sent</th>
{% if activity.has_pointer %} {% if activity.has_pointer %}
<th>Last update_pointer</th> <th>Last update_pointer</th>
<th>Pointer updates</th> <th>Pointer updates</th>
{% endif %} {% endif %}
<th>Messages sent</th> <th>Last get_updates</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@@ -45,13 +45,13 @@
<td><strong>{{ row.full_name }}</strong></td> <td><strong>{{ row.full_name }}</strong></td>
<td><strong>{{ row.email }}</strong></td> <td><strong>{{ row.email }}</strong></td>
<td><strong>{{ row.realm }}</strong></td> <td><strong>{{ row.realm }}</strong></td>
<td sorttable_customkey="{{ row.get_updates_last|date:'YmdHi' }}">{{ row.get_updates_last }}</td>
<td sorttable_customkey="{{ row.send_message_last|date:'YmdHi' }}">{{ row.send_message_last }}</td> <td sorttable_customkey="{{ row.send_message_last|date:'YmdHi' }}">{{ row.send_message_last }}</td>
<td class="number">{{ row.send_message_count }}</td>
{% if activity.has_pointer %} {% if activity.has_pointer %}
<td sorttable_customkey="{{ row.update_pointer_last|date:'YmdHi' }}">{{ row.update_pointer_last }}</td> <td sorttable_customkey="{{ row.update_pointer_last|date:'YmdHi' }}">{{ row.update_pointer_last }}</td>
<td class="number">{{ row.update_pointer_count }}</td> <td class="number">{{ row.update_pointer_count }}</td>
{% endif %} {% endif %}
<td class="number">{{ row.send_message_count }}</td> <td sorttable_customkey="{{ row.get_updates_last|date:'YmdHi' }}">{{ row.get_updates_last }}</td>
</tr> </tr>
{% endfor %} {% endfor %}
</tbody> </tbody>