mirror of https://github.com/jumpserver/jumpserver
7 lines
215 B
Python
7 lines
215 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
#
|
||
|
from django.core.validators import RegexValidator
|
||
|
from django.utils.translation import ugettext_lazy as _
|
||
|
|
||
|
|
||
|
alphanumeric = RegexValidator(r'^[0-9a-zA-Z_-]*$', _('Special char not allowed'))
|