mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
b7a9649269
Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com>
17 lines
316 B
Python
17 lines
316 B
Python
from django import forms
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
__all__ = (
|
|
'RenderMarkdownForm',
|
|
)
|
|
|
|
|
|
class RenderMarkdownForm(forms.Form):
|
|
"""
|
|
Provides basic validation for markup to be rendered.
|
|
"""
|
|
text = forms.CharField(
|
|
label=_('Text'),
|
|
required=False
|
|
)
|