diff --git a/InvenTree/templates/InvenTree/settings/plugin_settings.html b/InvenTree/templates/InvenTree/settings/plugin_settings.html
index a242d03053..ee17a953c7 100644
--- a/InvenTree/templates/InvenTree/settings/plugin_settings.html
+++ b/InvenTree/templates/InvenTree/settings/plugin_settings.html
@@ -94,7 +94,14 @@
{% trans "Installation path" %} |
{{ plugin.package_path }} |
- {% if plugin.is_package == False %}
+ {% if plugin.is_package %}
+ {% elif plugin.is_builtin %}
+
+ |
+ {% trans "Builtin" %} |
+ {% trans "This is a builtin plugin which cannot be disabled" %} |
+
+ {% else %}
|
{% trans "Commit Author" %} | {{ plugin.package.author }} - {{ plugin.package.mail }}{% include "clip.html" %} |