Files
eveAI/eveai_app/templates/base.html
Josako 25e169dbea - Replace old implementation of PROCESSOR_TYPES and CATALOG_TYPES with the new cached approach
- Add an ordered_list dynamic field type (to be refined)
- Add tabulator javascript library to project
2025-05-29 16:00:25 +02:00

61 lines
3.2 KiB
HTML

<!DOCTYPE html>
<html lang="en" itemscope itemtype="http://schema.org/WebPage">
{% include 'head.html' %}
<body class="presentation-page bg-gray-200">
{% include 'session_defaults.html' %}
{% include 'navbar.html' %}
{% include 'header.html' %}
<hr>
<div class="container">
<div class="row">
<div class="col-md-12">
<span>
<div class="container mb-4">
<div class="row mt-lg-n12 mt-md-n12 mt-n12 justify-content-center">
{% block content_class %}<div class="col-xl-8 col-lg-5 col-md-7 mx-auto">{% endblock %}
<div class="card mt-8">
<div class="card-header p-0 position-relative mt-n4 mx-3 z-index-2">
<div class="bg-gradient-success shadow-success border-radius-lg py-3 pe-1 text-center py-4">
<h4 class="font-weight-bolder text-white mt-1">
{% block content_title %}{% endblock %}
</h4>
<p class="mb-1 text-sm text-white">
{% block content_description %}{% endblock %}
</p>
</div>
</div>
<div class="card-body">
{% block content %}{% endblock %}
</div>
<div class="card-footer text-center pt-0 px-lg-2 px-1">
<p class="mb-4 text-sm mx-auto">
{% block content_footer %}{% endblock %}
</p>
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages%}
{% for category, message in messages%}
<div class="alert alert-{{category}}" role="alert">
{{message}}
</div>
{%endfor%}
{%endif%}
{%endwith%}
</div>
</div>
</div>
</div>
</div>
</span>
</div>
</div>
</div>
<hr>
{% include 'footer.html' %}
{% include 'scripts.html' %}
{% include 'ordered_list_configs.html' %}
{% block scripts %}{% endblock %}
</body>
</html>