validators.py 256 B

1234567891011
  1. # -*- coding: utf-8 -*-
  2. import datetime
  3. from django.core.exceptions import ValidationError
  4. def validate_future_date(value):
  5. if value <= datetime.date.today():
  6. raise ValidationError(
  7. 'La date de retour doit être dans le futur')