#################### Template Customizing #################### The calendar is not yet available for customizing, but the input field template can be customized. First you have to create a HTML template for widget input. .. code-block:: HTML
This is a customized input from template
{% include 'django/forms/widgets/text.html' %}
Then add it to BOOTSTRAP_DATEPICKER_PLUS settings. .. code:: python BOOTSTRAP_DATEPICKER_PLUS = { "template_name": "my_app/custom-input.html", }