12 lines
205 B
HTML
12 lines
205 B
HTML
{% extends 'base.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}
|
|
{% trans "Operation Logs" %}
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
{% include "operationlogs/_index.html" %}
|
|
{{ table.render }}
|
|
{% endblock %}
|