12 lines
411 B
HTML
12 lines
411 B
HTML
{% extends "portfolios/base.html" %}
|
|
{% from "components/pagination.html" import Pagination %}
|
|
|
|
{% set secondary_breadcrumb = "navigation.portfolio_navigation.breadcrumbs.admin" | translate %}
|
|
|
|
{% block portfolio_content %}
|
|
<div v-cloak>
|
|
{% include "fragments/audit_events_log.html" %}
|
|
{{ Pagination(audit_events, 'portfolios.portfolio_activity', portfolio_id=portfolio_id) }}
|
|
</div>
|
|
{% endblock %}
|