Metadata-Version: 2.1
Name: nb_itsm
Version: 0.0.8
Summary: ITIL Services, Applications & more
Home-page: https://projects.cispa.saarland/it/services/itsm/netbox-plugin-itsm
License: Apache-2.0
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
Requires-Dist: Django (>=5.0.0,<6.0.0)
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                      |
|----------------|----------------|--------------------------------|
| 1.0.0          | >= 4.1.0       | 4.1.0                          |


## 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.
    },
}
```

