Files
PyRIGS/versioning/templates/activity_table.html
FreneticScribbler d708207ab9 Versioning module now does magic
Automatic creation of views/urls for anything registered with reversion, with a small amount of hackage to preserve legacy stuff. (and the DAMNED asset IDs!) I would never get distracted...
2020-08-29 16:24:11 +01:00

18 lines
448 B
HTML

{% extends override|default:'base_rigs.html' %}
{% load paginator from filters %}
{% load to_class_name from filters %}
{% block title %}{{ title|title }} Activity Stream{% endblock %}
{% block js %}
{% include 'partials/version_scripts.html' %}
{% endblock %}
{% block content %}
<div class="col-12">
<h3>{{ title|title }} Activity Stream</h3>
{% include 'partials/activity_table_body.html' %}
{% paginator %}
</div>
{% endblock %}