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

Closes #4793: Add description field to device component templates

This commit is contained in:
Jeremy Stretch
2020-06-30 15:12:53 -04:00
parent af778f8fca
commit 52a13b1960
6 changed files with 115 additions and 32 deletions

View File

@@ -27,6 +27,11 @@ __all__ = (
class ComponentTemplateModel(models.Model):
description = models.CharField(
max_length=200,
blank=True
)
objects = RestrictedQuerySet.as_manager()
class Meta: