{{form()}} I added the Form tags outside the div elements but for some reason they shrink. I'm using Bootstrap and I'm guessing it's because I've set the main container div to "row" and when I switch it to "col" it no longer shrinks, but that's not the layout I want. This is my code: აქტიური პასიური This is the design: The rows below are the desired layout, this is what happens before I add the form markup, the rows above are what happens when I add the form. What causes this? How can I solve this problem? thanks for your help! !{{ number_format(status1, 0, '', ',') }}
{{ number_format(status0, 0, '', ',') }}
FromDocumentation:
You have inserted a form between the row and column, so the column is now a grandchild of the row, not a child.
Replace thediv with a form instead of placing the form inside a div. Make sure to set the row class on the form.