mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-03 22:08:49 +00:00
* remove markuplint * remove dedicated html step - will be done by pre-commit * add djlint for django template linting * Fix T003: Endblock should have name * Fix H013: Img tag should have an alt attribute * Fix H014: Found extra blank lines * Fix T003: Endblock should have name * Fix H013: Img tag should have an alt attribute * small fixes * Fix T001: Variables should be wrapped in a single whitespace * Fix T003: Endblock should have name * small fixes * fix form method * add entry to contributing * fix template changes * another fix * use current version
69 lines
2.1 KiB
HTML
69 lines
2.1 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% load static %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
<div class='panel'>
|
|
<div class='panel-heading'>
|
|
<div class='d-flex flex-wrap'>
|
|
<h4>
|
|
{% block heading %}
|
|
<i>-- page header goes here --</i>
|
|
{% endblock heading %}
|
|
</h4>
|
|
{% include "spacer.html" %}
|
|
<div id='page-actions' class='btn-group' role='group'>
|
|
{% block actions %}
|
|
<i>-- actions go here --</i>
|
|
{% endblock actions %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% block page_info %}
|
|
<div class='panel-content'>
|
|
{% block details_above %}
|
|
{% endblock details_above %}
|
|
<div class='container' style='max-width: 100%; padding: 5px;'>
|
|
<div class='row'>
|
|
<div class='col' id='detail-panel-left'>
|
|
<div class='card'>
|
|
{% block details_left %}
|
|
<div class='row'>
|
|
<div class='col' style='max-width: 280px;'>
|
|
{% block thumbnail %}
|
|
{% endblock thumbnail %}
|
|
</div>
|
|
<div class='col'>
|
|
{% block details %}
|
|
{% endblock details %}
|
|
</div>
|
|
</div>
|
|
{% endblock details_left %}
|
|
</div>
|
|
</div>
|
|
<div class='col' id='detail-panel-right'>
|
|
<div class='card'>
|
|
{% block details_right %}
|
|
block details_right
|
|
{% endblock details_right %}
|
|
</div>
|
|
</div>
|
|
{% block details_below %}
|
|
{% endblock details_below %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock page_info %}
|
|
|
|
</div>
|
|
|
|
{% block page_content %}
|
|
<!-- Custom page content goes here-->
|
|
{% endblock page_content %}
|
|
{% include "plugin/panel_content.html" %}
|
|
|
|
{% endblock content %}
|