Django.template.exceptions.TemplateSyntaxError: 'bootstrap_field' получил некоторый позиционный аргумент(ы) после некоторого аргумента(ов) ключевого слова
i was trying to modify my django sign_in template with bootstrap field along with some arguments but i was not able too
` i was trying to modify my django sign_in template with bootstrap field along with some arguments but i was not able tooC:\Users\hp\Desktop\fastparcel\core\templates\sign_in.html, error at line 25
'bootstrap_field' received some positional argument(s) after some keyword argument(s)
{% bootstrap_field form.username show_lable=False placeholder ="Email" %}`
{% extends 'base.html' %}
{% load bootstrap4 %}
{% block content%}
<div class="container-fluid mt-5">
<div class="justify-content-center">
<div class="col-lg-4">
<div class="card">
<div class="card-body">
<h4 class="text-center text-uppercase mb-3">
<b>
{% if request.GET.next != '/courier/'%}
Customer
{% else %}
Courier
{% endif %}
</b>
</h4>
<form action="POST">
{% csrf_token %}
{% bootstrap_form_errors form %}
{% bootstrap_label "Email" %}
{% bootstrap_field form.username show_lable=False placeholder ="Email" %}
{% bootstrap_field field form.password %}
<button class="btn btn-warning btn-block "> Sign in</button>
</form>
</div>
</div>
</div>
</div>
</div>
{% endblock %}
Спасибо @raphael и ответ был следующим удаление пробела после placeholder в {% bootstrap_field form.username show_lable=False placeholder ="Email" %}, чтобы было как {% bootstrap_field form.username show_label=False placeholder="Email" %}