mirror of
https://github.com/netbox-community/netbox.git
synced 2026-03-29 05:42:09 +02:00
12 lines
500 B
HTML
12 lines
500 B
HTML
{% load i18n %}
|
|
{% include 'inc/panel_table.html' with table=related_changes_table heading='Related Changes' panel_class='default' %}
|
|
{% if related_changes_count > related_changes_table.rows|length %}
|
|
<div class="float-end">
|
|
<a href="{% url 'core:objectchange_list' %}?request_id={{ object.request_id }}" class="btn btn-primary">
|
|
{% blocktrans trimmed with count=related_changes_count|add:"1" %}
|
|
See All {{ count }} Changes
|
|
{% endblocktrans %}
|
|
</a>
|
|
</div>
|
|
{% endif %}
|