mirror of
https://github.com/inventree/inventree-website.git
synced 2025-05-04 08:18:53 +00:00
add extend functionality
This commit is contained in:
parent
1e9f518582
commit
05eba87a8f
@ -8,8 +8,10 @@ functions:
|
||||
text: InvenTree allows you to easily create, modify or delete suppliers and supplier items linked to any part in your inventory.
|
||||
link: https://inventree.readthedocs.io/en/latest/companies/supplier/
|
||||
- title: Instant Stock Knowledge
|
||||
text: Instantly view current stock for a certain part, in a particular location, or required for an individual build. Stock items are organized in cascading locations and sub-locations, allowing flexible inspection of stock under any location. Stock items can be serialized for tracking of individual items, and test results can be stored against a serialized stock item for the purpose of acceptance testing and commissioning.
|
||||
text: Instantly view current stock for a certain part, in a particular location, or required for an individual build.
|
||||
extend: Stock items are organized in cascading locations and sub-locations, allowing flexible inspection of stock under any location. Stock items can be serialized for tracking of individual items, and test results can be stored against a serialized stock item for the purpose of acceptance testing and commissioning.
|
||||
link: https://inventree.readthedocs.io/en/latest/stock/stock/
|
||||
- title: BOM Management
|
||||
text: Intelligent BOM (Bill of Material) management provides a clear understanding of the sub-parts required to make a new part. InvenTree allows you to upload simple BOM files in multiple formats, and download a detailed BOM with all the information stored in its database.
|
||||
text: Intelligent <strong>B</strong>ill <strong>o</strong>f <strong>M</strong>aterial management provides a clear understanding of the sub-parts required to make a new part.
|
||||
extend: InvenTree allows you to upload simple BOM files in multiple formats, and download a detailed BOM with all the information stored in its database.
|
||||
link: https://inventree.readthedocs.io/en/latest/build/bom/
|
||||
|
@ -9,7 +9,10 @@
|
||||
{% for item in include.data.functions %}
|
||||
<div class="xl:w-1/{{ function_len }} lg:w-1/2 md:w-full px-8 py-6">
|
||||
<h2 class="text-lg sm:text-xl cm-gray-1 font-medium title-font mb-2">{{ item.title }}</h2>
|
||||
<p class="leading-relaxed text-base mb-4">{{ item.text }}</p>
|
||||
<p class="leading-relaxed text-base mb-4">
|
||||
{{ item.text }}
|
||||
{% if include.extend and item.extend %}<br><br>{{ item.extend }}{% endif %}
|
||||
</p>
|
||||
{% if item.link %}
|
||||
<a class="text-secondary inline-flex items-center" href="{{ item.link }}">Learn More {% include learn_more.html %}</a>
|
||||
{% endif %}
|
||||
|
@ -8,7 +8,7 @@ layout: default
|
||||
{% include features.html data=data %}
|
||||
|
||||
{% include cta.html cta=site.data.general.learn_cta %}
|
||||
{% include functions.html data=site.data.general.function %}
|
||||
{% include functions.html data=site.data.general.function extend=true %}
|
||||
{% include cta.html cta=site.data.general.end_cta %}
|
||||
|
||||
---
|
||||
|
Loading…
x
Reference in New Issue
Block a user