I'm having trouble with configuring the Mezzanine in-line editing for datetime fields.
I have a field in the page something like this (as in http://mezzanine.jupo.org/docs/inline-editing.html)
{% editable page.project.start %}
{{ page.project.start|date:'Y M'}}
{% endeditable %}
However, the widget is showing only 9 future years (as https://docs.djangoproject.com/en/2.1/ref/forms/widgets/#selectdatewidget) specifies, so it's impossible to enter any dates in the past.
I'd need to set the years
attribute for that widget, however, I don't have any direct access to it, as it's generated automagically by Mezzanine. How can I set the arguments to Django widgets through the Mezzanine in-line editing code?