document.addEventListener('DOMContentLoaded', function () { // Set company_action to 'create' by default (it's now a hidden field) const companyActionField = document.getElementById('id_company_action'); if (companyActionField) { companyActionField.value = 'create'; } // Company fields are now directly visible, no modal needed // The form will submit with the company details directly });