mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
6c55874dd1
* [FR] Add plugin keys, state and version to version info Fixes #3477 * Add info to general API endpoint
10 lines
493 B
HTML
10 lines
493 B
HTML
# Version Information:{% load inventree_extras %}
|
|
InvenTree-Version: {% inventree_version %}
|
|
Django Version: {% django_version %}
|
|
{% inventree_commit_hash as hash %}{% if hash %}Commit Hash: {{ hash }}{% endif %}
|
|
{% inventree_commit_date as commit_date %}{% if commit_date %}Commit Date: {% render_date commit_date %}{% endif %}
|
|
Database: {% inventree_db_engine %}
|
|
Debug-Mode: {% inventree_in_debug_mode %}
|
|
Deployed using Docker: {% inventree_docker_mode %}
|
|
Active plugins: {% plugins_info %}
|