{{> partials/sidebar }}
Django Docs - v1.0.0
Django Structure

The Django Structure of the Evohus Admin Panel is organized for clarity, flexibility, and scalability. Each major layout section — header, sidebar, content, and footer — is structured using clean and semantic markup. This modular setup allows developers to easily customize or replace individual sections without affecting others.

<!DOCTYPE html> <html lang="en" data-layout="modern" data-theme="default" data-bs-theme="light" data-sidebar-colors="dark" data-sidebar="large" data-topbar-colors="light" data-nav-type="default" dir="ltr" data-colors="default" data-profile-sidebar> <head> {% block meta %}{% endblock meta %} {% block css %}{% endblock css %} {% include "partials/head-css.html" %} </head> <body class="sidebar-hidden"> <div class="body-effect-img"></div> {% include "partials/topbar.html" %} {% include "partials/sidebar.html" %} {% block wraper %} <div class="min-vh-100 position-relative"> <div class="page-wrapper"> {% endblock wraper %} {% block content %}{% endblock content %} </div> {% include "partials/footer.html" %} </div> {% include "partials/vendor-scripts.html" %} {% block js %}{% endblock js %} </body> </html>