Answers for "using the current date django model field"

1

django get current date

from django.utils import timzone 
This enables you to have a timestamp on any model if you create a 
DateTimeField.

For the date, you can use datetime.date.today() or datetime.datetime.now().date().

For the time, you can use datetime.datetime.now().time().

However, why have separate fields for these in the first place? 
Why not use a single DateTimeField? in Models

You can always define helper functions on the model that return the 
.date() or .time() later if you only want one or the other.
Posted by: Guest on March-19-2021
0

django today date in template

It is {% now "jS F Y H:i" %}
It is {% now "SHORT_DATETIME_FORMAT" %}
Posted by: Guest on June-14-2021

Python Answers by Framework

Browse Popular Code Answers by Language