python - Django Bootstrap App differences with the normal Bootstrap -
i read in books , see in tutorials better use django bootstrap example:
https://github.com/dyve/django-bootstrap-toolkit
https://github.com/dyve/django-bootstrap3
over using base template original boostrap?
but difference? 1 better?
the django bootstrap toolkit automatically handles things paginations , forms , on , makes them loop bootstrap. if you're using templatetags reduces work (i.e. don't need add classes make bootstrap make forms or pagination buttons nicer).
some examples toolkit provides are:
render form bootstrap classes bootstrap stylizes it.
{{ form|as_bootstrap }} it gives input fileds date input can used inside form class.
date = forms.datefield( widget=bootstrapdateinput(), ) check out demos more info.
Comments
Post a Comment