mirror of
https://github.com/inventree/inventree-website.git
synced 2025-04-27 21:16:45 +00:00
21 lines
796 B
HTML
21 lines
796 B
HTML
---
|
|
layout: default
|
|
title: Plugin List
|
|
permalink: /plugins
|
|
---
|
|
|
|
<div class="pt-3 pb-1 section-container">
|
|
<h1 class="header-text title-font mb-4 cm-gray-1">InvenTree Plugin List</h1>
|
|
<p class="lead">
|
|
InvenTree is a modular application and can be extended with plugins. This list is a collection of plugins that have been developed by the community.
|
|
Beeing on this list does not mean that the plugin is officially supported by the InvenTree core team. We also do not check for security, privacy or performance issues or compatibility with the latest InvenTree version.
|
|
</p>
|
|
<div class="flex flex-wrap">
|
|
{% for plugin in site.repo %}
|
|
<div class="space-4 p-2 md:w-1/2">
|
|
{% include plugin_card.html plugin=plugin %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|