1👍
{% bootstrap-form form %}
should be {% bootstrap_form form %}
. Also paste the error
- [Django]-Best JSON library to get JSON data for Django?
- [Django]-Django notification on comment submission
0👍
Also for everyone else that have this same error and it’s not a typo like OP did, make sure you have loaded bootstrap in your child template via
{% extends "base.html" %}
{% load bootstrapX %}
Where X is your version of bootstrap , So it’s not sufficent to load it in the base template.In addition to that make sure the load bootstrap statment is after the extends
statment, This video explains the setup in great detail https://www.youtube.com/watch?v=YmJ0TACm8oE
Source:stackexchange.com