mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-28 03:26:45 +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
28 lines
714 B
HTML
28 lines
714 B
HTML
{% extends "page_base.html" %}
|
|
{% load static %}
|
|
{% load i18n %}
|
|
{% load inventree_extras %}
|
|
|
|
{% block page_title %}
|
|
{% if location %}
|
|
{% inventree_title %} | {% trans "Stock Location" %} - {{ location }}
|
|
{% else %}
|
|
{% inventree_title %} | {% trans "Stock" %}
|
|
{% endif %}
|
|
{% endblock page_title %}
|
|
|
|
{% block sidenav %}
|
|
<div id='stock-tree'>
|
|
{% trans "Loading..." %}
|
|
</div>
|
|
{% endblock sidenav %}
|
|
|
|
{% block breadcrumbs %}
|
|
<a href='#' id='breadcrumb-tree-toggle' class="breadcrumb-item"><span class="fas fa-bars"></span></a>
|
|
{% if item %}
|
|
{% include 'stock/loc_link.html' with location=item.location %}
|
|
{% else %}
|
|
{% include 'stock/loc_link.html' with location=location %}
|
|
{% endif %}
|
|
{% endblock breadcrumbs %}
|