FossilRepo
{% extends "base.html" %} {% load humanize %} {% block title %}Audit Log — Fossilrepo{% endblock %}
{% block content %}
Audit Log
History of changes across all tracked models.
All
{% for model_name in available_models %}
{{ model_name }}
{% endfor %}
| Date | User | Action | Model | Object |
|---|---|---|---|---|
| {{ entry.date|naturaltime }} | {% if entry.user %}{{ entry.user.username }}{% else %}system{% endif %} | {% if entry.action == "Created" %} Created {% elif entry.action == "Changed" %} Changed {% elif entry.action == "Deleted" %} Deleted {% else %} {{ entry.action }} {% endif %} | {{ entry.model }} | {{ entry.object_repr }} |
| No audit entries found{% if model_filter %} for {{ model_filter }}{% endif %}. | ||||
{% with extra_params="&model="|add:model_filter %} {% include "includes/_pagination_manual.html" %} {% endwith %}