2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 21:15:41 +00:00

Purchase Order now uses menu bar

This commit is contained in:
Oliver Walters
2021-02-24 20:01:05 +11:00
parent bedfaa582c
commit 213851e8aa
9 changed files with 112 additions and 75 deletions

View File

@ -3,34 +3,49 @@
{% load static %}
{% load i18n %}
{% block menubar %}
<!-- Custom menubar goes here -->
{% endblock %}
{% block content %}
<div class='row'>
<div class='col-sm-6'>
<div class='media-left'>
{% block thumbnail %}
<!-- Image goes here -->
<div class='panel panel-default panel-inventree'>
<div class='row'>
<div class='col-sm-6'>
<div class='media-left'>
{% block thumbnail %}
<!-- Image goes here -->
{% endblock %}
</div>
<div class='media-body'>
{% block page_data %}
<!-- Data next to image goes here -->
{% endblock %}
</div>
</div>
<div class='col-sm-6'>
{% block page_details %}
<!-- Right column data goes here -->
{% endblock %}
</div>
<div class='media-body'>
{% block page_data %}
<!-- Data next to image goes here -->
{% endblock %}
</div>
</div>
<div class='col-sm-6'>
{% block page_details %}
<!-- Right column data goes here -->
{% endblock %}
</div>
</div>
<hr>
<div class='panel panel-default panel-inventree'>
<div class='panel-heading'>
<h4>
{% block heading %}
<!-- Heading goes here -->
{% endblock %}
</h4>
</div>
<div class='container-fluid'>
{% block details %}
<!-- Particular page detail views go here -->
{% endblock %}
<div class='panel-content'>
{% block details %}
<!-- Particular page detail views go here -->
{% endblock %}
</div>
</div>
{% endblock %}