├── netbox_gitlab
├── migrations
│ ├── __init__.py
│ ├── 0001_initial.py
│ └── 0002_traceelement.py
├── templates
│ └── netbox_gitlab
│ │ ├── error.html
│ │ ├── diff_highlight_line.html
│ │ ├── export_inventory.html
│ │ ├── device
│ │ ├── device_info.html
│ │ └── update_interface_table.html
│ │ ├── export_device.html
│ │ ├── export_interfaces.html
│ │ └── ask_branch.html
├── navigation.py
├── urls.py
├── hacks.py
├── fields.py
├── forms.py
├── static
│ └── netbox_gitlab
│ │ └── style.css
├── signals.py
├── __init__.py
├── models.py
├── template_content.py
├── utils.py
└── views.py
├── pyproject.toml
├── setup.py
├── .idea
├── misc.xml
├── inspectionProfiles
│ ├── profiles_settings.xml
│ └── Project_Default.xml
├── modules.xml
└── netbox-gitlab.iml
├── .github
└── workflows
│ └── python-publish.yml
├── setup.cfg
├── examples
├── inventory_template.j2
├── interface_template.j2
└── device_template.j2
├── README.md
├── .gitignore
└── LICENSE.txt
/netbox_gitlab/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/pyproject.toml:
--------------------------------------------------------------------------------
1 | [build-system]
2 | requires = ["setuptools >= 41.0", "wheel"]
3 | build-backend = "setuptools.build_meta"
4 |
--------------------------------------------------------------------------------
/setup.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python3
2 |
3 | import setuptools
4 |
5 | if __name__ == "__main__":
6 | setuptools.setup()
7 |
--------------------------------------------------------------------------------
/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
18 | Exporting to GitLab branch {{ branch }}: 19 |
20 | {% endblock %} 21 | 22 | {% block content %} 23 | {% if form.non_field_errors %} 24 |31 | Exporting to GitLab branch {{ branch }}: 32 |
33 | {% endblock %} 34 | 35 | {% block content %} 36 | {% if form.non_field_errors %} 37 |31 | Exporting to GitLab branch {{ branch }}: 32 |
33 | {% endblock %} 34 | 35 | {% block content %} 36 | {% if form.non_field_errors %} 37 |