This commit is contained in:
Oliver Walters 2021-02-24 21:30:55 +11:00
parent 89bdfd1c62
commit a0eec930bb
4 changed files with 33 additions and 16 deletions

View File

@ -3,9 +3,15 @@
{% load i18n %} {% load i18n %}
{% load inventree_extras %} {% load inventree_extras %}
{% block menubar %}
{% include "part/navbar.html" with tab='bom' %}
{% endblock %}
{% block heading %}
{% trans "Upload Bill of Materials" %}
{% endblock %}
{% block details %} {% block details %}
{% include "part/tabs.html" with tab='bom' %}
<h4>{% trans "Upload Bill of Materials" %}</h4>
<p>{% trans "Step 2 - Select Fields" %}</p> <p>{% trans "Step 2 - Select Fields" %}</p>
<hr> <hr>

View File

@ -3,9 +3,15 @@
{% load i18n %} {% load i18n %}
{% load inventree_extras %} {% load inventree_extras %}
{% block menubar %}
{% include "part/navbar.html" with tab="bom" %}
{% endblock %}
{% block heading %}
{% trans "Upload Bill of Materials" %}
{% endblock %}
{% block details %} {% block details %}
{% include "part/tabs.html" with tab="bom" %}
<h4>{% trans "Upload Bill of Materials" %}</h4>
<p>{% trans "Step 3 - Select Parts" %}</p> <p>{% trans "Step 3 - Select Parts" %}</p>
<hr> <hr>

View File

@ -3,13 +3,16 @@
{% load i18n %} {% load i18n %}
{% load inventree_extras %} {% load inventree_extras %}
{% block menubar %}
{% include "part/navbar.html" with tab='bom' %}
{% endblock %}
{% block heading %}
{% trans "Upload Bill of Materials" %}
{% endblock %}
{% block details %} {% block details %}
{% include "part/tabs.html" with tab='bom' %}
<h4>{% trans "Upload Bill of Materials" %}</h4>
<hr>
<p>{% trans "Step 1 - Select BOM File" %}</p> <p>{% trans "Step 1 - Select BOM File" %}</p>
<div class='alert alert-info alert-block'> <div class='alert alert-info alert-block'>

View File

@ -1,12 +1,14 @@
{% extends "part/part_base.html" %} {% extends "part/part_base.html" %}
{% load static %} {% load static %}
{% load i18n %} {% load i18n %}
{% block details %}
{% include 'part/tabs.html' with tab='track' %}
<h4>{% trans "Part Tracking" %}</h4>
<hr>
{% block menubar %}
{% include 'part/navbar.html' with tab='track' %}
{% endblock %}
{% block heading %}
{% trans "Part Tracking" %}
{% endblock %}
{% block details %}
{% endblock %} {% endblock %}