Child: [ddf08c] (diff)

Download this file

audit.html    16 lines (12 with data), 397 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
{% extends g.theme.master %}
{% block title %}{{c.project.name}} / Admin / Audit{% endblock %}
{% block header %}Project Audit{% endblock %}
{% block content %}
<div class="grid-19">
{% if not entries %}
<p>There are no entries in the audit log to display.</p>
{% else %}
{{ c.widget.display(entries=entries, limit=limit, page=page, count=count) }}
{% endif %}
</div>
{% endblock %}