1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

23 lines
600 B
HTML
Raw Normal View History

{% extends 'users/_user.html' %}
2016-05-24 09:45:40 -04:00
{% block title %}Recent Activity{% endblock %}
{% block usercontent %}
<table class="table table-hover">
<thead>
<tr>
<th>Time</th>
<th>Action</th>
</tr>
</thead>
<tbody>
{% for action in recent_activity %}
2016-05-24 09:45:40 -04:00
<tr>
<td>{{ action.time|date:'SHORT_DATETIME_FORMAT' }}</td>
<td>{{ action.icon }} {{ action.message|safe }}</td>
2016-05-24 09:45:40 -04:00
</tr>
{% endfor %}
</tbody>
</table>
2016-05-24 09:45:40 -04:00
{% endblock %}