mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
805892f623
* 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
23 lines
646 B
HTML
23 lines
646 B
HTML
{% extends 'base/layout.html' %}
|
|
{% load buttons %}
|
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
{% block extra_controls %}{% export_button content_type %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row mb-3">
|
|
<div class="col col-md-9">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
{% include 'inc/responsive_table.html' %}
|
|
</div>
|
|
</div>
|
|
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
|
|
</div>
|
|
<div class="col col-md-3 float-end right-side-panel noprint">
|
|
{% include 'inc/search_panel.html' %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|