You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
970 B

{% extends 'cabinet/_base.html' %}
{% block page %}
<section class="body">
{% include 'cabinet/_includes/header.html' %}
<div class="inner-wrapper">
{% include 'cabinet/_includes/sidebar.html' %}
<section role="main" class="content-body">
<header class="page-header">
<h2>{{ title }}</h2>
<div class="right-wrapper text-right">
<ol class="breadcrumbs">
<li><a href="{% url 'cabinet:index' %}"><i class="fas fa-home"></i></a>
{% block breadcrumbs %}{% endblock %}
</ol>
{# <a class="sidebar-right-toggle" data-open="sidebar-right"><i class="fa fa-chevron-left"></i></a>#}
</div>
</header>
{% block content %}{% endblock %}
</section>
</div>
</section>
{% endblock %}