In models.py I have
class myModel:
period = models.CharField(max_length = 100, blank=True)
the period should contain something like: DD:HH:MM:SS.
In the HTML template, I want this field to be in four different textbox input fields. Is there a way to do this in Django?