6 lines
176 B
Python
6 lines
176 B
Python
from django.core.validators import RegexValidator
|
|
|
|
phone_regex = RegexValidator(
|
|
regex=r'^\+998\d{9}$',
|
|
message="Telefon raqam formatda bo'lishi kerak: +998XXXXXXXXX"
|
|
) |