mirror of
https://github.com/inventree/inventree-website.git
synced 2025-06-18 04:55:32 +00:00
.github
_data
_drafts
_includes
_layouts
_news
_plugins
_posts
_publishers
_repo
about
alternatives
assets
extend
use
.gitignore
404.md
CNAME
Gemfile
Gemfile.lock
LICENSE
README.md
_config.yml
blog.html
categories.html
contribute.md
demo.md
deploy.md
digitalocean.md
functions.md
index.md
news.html
newsletter.md
package-lock.json
package.json
plugins.html
postcss.config.js
publishers.html
support.md
tags.html
tailwind.config.js
23 lines
946 B
HTML
23 lines
946 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="content">
|
|
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.
|
|
<br><br>
|
|
You can also browse for plugins by <a href="{% link tags.html %}">tags</a> or <a href="{% link categories.html %}">categories</a>
|
|
</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>
|