7 lines
136 B
Python
7 lines
136 B
Python
from django.utils import timezone
|
|
from datetime import timedelta
|
|
|
|
|
|
def month_from_now():
|
|
return timezone.now() + timedelta(days=30)
|