[Fixed]-Django and bootstrap 3 error with 'bootstrap_form_buttons', expected 'endblock'

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 %}

Leave a comment