Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 27940171 authored by LaV's avatar LaV
Browse files

change label table

parent c71b6620
No related branches found
No related tags found
1 merge request!8change label table
Pipeline #63889 passed
......@@ -2,7 +2,7 @@ from setuptools import find_packages, setup
setup(
name='netbox-rps-plugin',
version='0.5.0-r1',
version='0.5.0-r2',
description='A Netbox plugin to add RPS resources',
install_requires=[],
packages=find_packages('./src'),
......
......@@ -5,7 +5,7 @@ class NetBoxRpsConfig(PluginConfig):
name = 'netbox_rps_plugin'
verbose_name = 'NetBox RPS'
description = 'A Netbox plugin to add RPS resources'
version = '0.5.0-r1'
version = '0.5.0-r2'
author = "Vincent Simonin"
author_email = "vincent.simonin@ext.ec.europa.eu"
base_url = 'rps'
......
......@@ -22,13 +22,13 @@ class Mapping(NetBoxModel):
source = models.CharField(
max_length=120,
blank=False,
verbose_name='Name',
verbose_name='Source',
validators=[URLValidator(message='It must be a url')],
)
target = models.CharField(
max_length=120,
blank=False,
verbose_name='Identifier',
verbose_name='Target',
validators=[URLValidator(message='It must be a url')],
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment