Files
Touchh/.venv/lib/python3.10/site-packages/jet/dashboard/templates/admin/index.html
2024-12-06 10:45:08 +09:00

38 lines
938 B
HTML

{% extends "admin/base_site.html" %}
{% load i18n admin_static jet_dashboard_tags static %}
{% block html %}{% get_dashboard 'index' as dashboard %}{{ block.super }}{% endblock %}
{% block extrastyle %}
{{ block.super }}
<link rel="stylesheet" type="text/css" href="{% static "admin/css/dashboard.css" %}" />
{% for css in dashboard.media.css %}
<link href="{% static css %}" rel="stylesheet" />
{% endfor %}
{% endblock %}
{% block extrahead %}
{{ block.super }}
{% for js in dashboard.media.js %}
<script src="{% static js %}"></script>
{% endfor %}
{% endblock %}
{% block bodyclass %}{{ block.super }} dashboard jet{% endblock %}
{% block sidebar %}{% endblock %}
{% block breadcrumbs %}
{% if not is_popup %}
<div class="breadcrumbs"></div>
{% endif %}
{{ dashboard.render_tools }}
{% endblock %}
{% block content %}
{{ dashboard.render }}
{% endblock %}