mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
Asset specific templates begone. Still need to bring back the ID formatting for the Rigboard.
18 lines
439 B
HTML
18 lines
439 B
HTML
{% extends override|default:'base_rigs.html' %}
|
|
{% load paginator from filters %}
|
|
{% load to_class_name from filters %}
|
|
|
|
{% block title %}{{ title }} Activity Stream{% endblock %}
|
|
|
|
{% block js %}
|
|
{% include 'partials/version_scripts.html' %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="col-sm-12">
|
|
<h3>{{ title }} Activity Stream</h3>
|
|
{% include 'partials/activity_table_body.html' %}
|
|
{% paginator %}
|
|
</div>
|
|
{% endblock %}
|