Rework webapp models and add translation framework

This commit is contained in:
Ilkka Oksanen
2017-06-07 18:38:04 +03:00
parent b37d5f2f55
commit bd0522f79a
15 changed files with 359 additions and 28 deletions
+6
View File
@@ -0,0 +1,6 @@
from django.utils import timezone
from datetime import timedelta
def month_from_now():
return timezone.now() + timedelta(days=30)