Metadata-Version: 2.4
Name: nb_itsm
Version: 0.12.0
Summary: ITIL Services, Applications & more
License: Apache-2.0
License-File: LICENSE
License-File: NOTICE
Author: CISPA IT Department
Author-email: admin@cispa.de
Maintainer: Sebastian Weisgerber
Maintainer-email: weisgerber@cispa.de
Requires-Python: >=3.10,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Plugins
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: Django (==5.2.7)
Project-URL: Repository, https://projects.cispa.saarland/it/services/itsm/netbox-plugin-itsm
Description-Content-Type: text/markdown

# Netbox ITSM

[Netbox](https://github.com/netbox-community/netbox) Plugin for IT Service Management.

Forked from https://github.com/renatoalmeidaoliveira/nbservice

## Compatibility

| Plugin Version | NetBox Version | Tested on |
|----------------|----------------|-----------|
| 0.12.0         | >= 4.4.0       | 4.4.5     |


## Installation

Add the following line to /opt/netbox/local_requirements.txt with
```
nb_itsm
```

Enable the plugin in /opt/netbox/netbox/netbox/configuration.py:
```
PLUGINS = ['nb_itsm']
```

Runs /opt/netbox/upgrade.sh

```
sudo /opt/netbox/upgrade.sh
```

## Configuration

```python
PLUGINS_CONFIG = {
    "nb_itsm": {
        "top_level_menu": True # If set to True the plugin will add a top level menu item for the plugin. If set to False the plugin will add a menu item under the Plugins menu item.  Default is set to True.
    },
}
```

