mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
* Clean up & comment base templates * Clean up login template & form * Use SVG file for NetBox logo * Simplify breadcrumbs * Merge changelog.html into home.html * Rename title_container block to header * Move breadcrumbs block to object.html * Attach names to endblock template tags * Reorganize root-level templates into base/ and inc/ * Remove obsolete reference to Bootstrap 3.4.1
12 lines
427 B
HTML
12 lines
427 B
HTML
{% extends base_template %}
|
|
|
|
{% block title %}{{ object }} - Change Log{% endblock %}
|
|
|
|
{% block content %}
|
|
{% include 'inc/panel_table.html' %}
|
|
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
|
|
<div class="text-muted">
|
|
Change log retention: {% if settings.CHANGELOG_RETENTION %}{{ settings.CHANGELOG_RETENTION }} days{% else %}Indefinite{% endif %}
|
|
</div>
|
|
{% endblock %}
|