2016-05-24 09:45:40 -04:00
|
|
|
{% extends '_base.html' %}
|
|
|
|
{% load form_helpers %}
|
|
|
|
|
|
|
|
{% block title %}Recent Activity{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-8 col-md-offset-2">
|
|
|
|
<h1>Recent Activity</h1>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-2 col-md-offset-2">
|
|
|
|
{% include 'users/inc/profile_nav.html' with active_tab="recent_activity" %}
|
|
|
|
</div>
|
|
|
|
<div class="col-md-6">
|
|
|
|
<table class="table table-hover">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Time</th>
|
|
|
|
<th>Action</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for action in recent_activity %}
|
|
|
|
<tr>
|
2016-06-22 13:22:59 -04:00
|
|
|
<td>{{ action.time|date:'SHORT_DATETIME_FORMAT' }}</td>
|
2016-05-24 09:45:40 -04:00
|
|
|
<td>{{ action.icon }} {{ action.message|safe }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|