diff --git a/home/_data/general/function.yml b/home/_data/general/function.yml index 756e8ee0..ea221c01 100644 --- a/home/_data/general/function.yml +++ b/home/_data/general/function.yml @@ -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 Bill of Material 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/ diff --git a/home/_includes/functions.html b/home/_includes/functions.html index eb1ca272..b22a8d13 100644 --- a/home/_includes/functions.html +++ b/home/_includes/functions.html @@ -9,7 +9,10 @@ {% for item in include.data.functions %}

{{ item.title }}

-

{{ item.text }}

+

+ {{ item.text }} + {% if include.extend and item.extend %}

{{ item.extend }}{% endif %} +

{% if item.link %} Learn More {% include learn_more.html %} {% endif %} diff --git a/home/_layouts/branche.html b/home/_layouts/branche.html index 9ea3442f..0bab64b7 100644 --- a/home/_layouts/branche.html +++ b/home/_layouts/branche.html @@ -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 %} ---