parent
4be476eb49
commit
327d08f4c2
|
|
@ -272,6 +272,10 @@ class JournalEntryImportForm(NetBoxModelImportForm):
|
|||
choices=JournalEntryKindChoices,
|
||||
help_text=_('The classification of entry')
|
||||
)
|
||||
comments = forms.CharField(
|
||||
label=_('Comments'),
|
||||
required=True
|
||||
)
|
||||
|
||||
class Meta:
|
||||
model = JournalEntry
|
||||
|
|
|
|||
|
|
@ -793,7 +793,7 @@ class JournalEntryForm(NetBoxModelForm):
|
|||
label=_('Kind'),
|
||||
choices=JournalEntryKindChoices
|
||||
)
|
||||
comments = CommentField()
|
||||
comments = CommentField(required=True)
|
||||
|
||||
class Meta:
|
||||
model = JournalEntry
|
||||
|
|
|
|||
Loading…
Reference in New Issue