For Django, I have this in my model: date = models.DateTimeField()
the widget for this is AdminSplitDateTime in the Admin Panel.
It then displays a graphical widget that shows the date and time, and allows you to pick today or now.
What I want to do instead is just display the date time as a string, as such:
Date: 08/26/2021 04:46:11 PM
I just want to display the date/time as text rather than a fancy widget...
I spent time trying to figure this out, but I am stuck. Do you guys have any idea on how to implement this in Django? Thanks!