'Add crontab form in non-admin forms django

I want to add crontab schedule to a non admin form. I can see the registered jobs with crontab

class Scheduler(ModelForm):
class Meta:
    model = Scheduler
    fields = [
        'id',
        'title',
        'description',
        'crontab'
    ]

The problem here is I can't see the button to add a new schedule. How to add that can someone tell me.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source