recent_activity.html 600 B

12345678910111213141516171819202122
  1. {% extends 'users/_user.html' %}
  2. {% block title %}Recent Activity{% endblock %}
  3. {% block usercontent %}
  4. <table class="table table-hover">
  5. <thead>
  6. <tr>
  7. <th>Time</th>
  8. <th>Action</th>
  9. </tr>
  10. </thead>
  11. <tbody>
  12. {% for action in recent_activity %}
  13. <tr>
  14. <td>{{ action.time|date:'SHORT_DATETIME_FORMAT' }}</td>
  15. <td>{{ action.icon }} {{ action.message|safe }}</td>
  16. </tr>
  17. {% endfor %}
  18. </tbody>
  19. </table>
  20. {% endblock %}