1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Increase length of CustomLink text and url fields

This commit is contained in:
Jeremy Stretch
2019-04-19 14:58:55 -04:00
parent 6ab56c3978
commit 074d0349a1
2 changed files with 4 additions and 4 deletions

View File

@@ -331,11 +331,11 @@ class CustomLink(models.Model):
unique=True
)
text = models.CharField(
max_length=200,
max_length=500,
help_text="Jinja2 template code for link text"
)
url = models.CharField(
max_length=200,
max_length=500,
verbose_name='URL',
help_text="Jinja2 template code for link URL"
)