I am using a modal for a small form but I am bumping into a problem
I want my background to be faded when opening it and also when the page is loaded with it already shown (in case of form errors)
<div class="modal {% if form.errors %}show{% endif %}" id="ApiModal" tabindex="-1" role="dialog" aria-hidden="true">
The modal will be shown, but the background is not faded anymore. Now when i user fade together with show in the class.
<div class="modal {% if form.errors %}show fade{% endif %}" id="ApiModal" tabindex="-1" role="dialog" aria-hidden="true">
The modal is opened (page seems blocked) but it isn't shown anywhere