1👍
✅
django-bootstrap3
does not have a templatetag called bootstrap_form_buttons
. You probably want to use buttons
or bootstrap_button
Change your code to this:
{% buttons %}
<button type="submit" class="btn btn-primary">Login</button>
{% endbuttons %}
Source:stackexchange.com