We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
class MaterialRequest(models.Model): material_name = models.CharField(max_length = 50) quantity = models.FloatField() date_required_by = models.DateTimeField()
and
class MaterialRequestForm(forms.ModelForm): class Meta: model = MaterialRequest
how to add datepicker
template
{% csrf_token %} {% bootstrap_form form %}
The text was updated successfully, but these errors were encountered:
Hey, django-bootstrap4 doesn't provide special widgets, that are not part of bootstrap. But there are some packages that provide date- and time-pickers. Have a look at https://github.com/monim67/django-bootstrap-datepicker-plus. There is also this package https://github.com/FlipperPA/django-tempus-dominus, but this seems to be no longer maintained. I'm sure there are a lot more, all with pros and cons.
Sorry, something went wrong.
No branches or pull requests
and
how to add datepicker
template
The text was updated successfully, but these errors were encountered: