diff --git a/app/views/software_records/_form_general.html.erb b/app/views/software_records/_form_general.html.erb
index f6572d5..14a5508 100644
--- a/app/views/software_records/_form_general.html.erb
+++ b/app/views/software_records/_form_general.html.erb
@@ -47,184 +47,12 @@
<%= form.select(:authentication_type, t('authentication_types'), {}, { :class => 'form-control' }) %>
-
-<% if current_user.role.to_s == "root_admin" %>
-
-<% else %>
- <% if @software_record.departments.any? %>
-
- <% end %>
-<% end %>
-
-
-
-<% if current_user.role.to_s != "owner" %>
-
-<% else %>
- <% if @software_record.developers.any? %>
-
- <% end %>
-<% end %>
-
-
-
-<% if current_user.role.to_s != "owner" %>
-
-<% else %>
- <% if @software_record.tech_leads.any? %>
-
- <% end %>
-<% end %>
-
-
-
-
-
-
-
-
-
-
+
+ <%= render 'form_multi_departments', software_record: @software_record, component: component, form: form %>
+ <%= render 'form_multi_developers', software_record: @software_record, component: component, form: form %>
+ <%= render 'form_multi_tech_leads', software_record: @software_record, component: component, form: form %>
+ <%= render 'form_multi_product_owners', software_record: @software_record, component: component, form: form %>
+ <%= render 'form_multi_admin_users', software_record: @software_record, component: component, form: form %>
<% if current_user.role.to_s != "owner" %>
diff --git a/app/views/software_records/_form_multi_admin_users.html.erb b/app/views/software_records/_form_multi_admin_users.html.erb
new file mode 100644
index 0000000..ebaff8b
--- /dev/null
+++ b/app/views/software_records/_form_multi_admin_users.html.erb
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
diff --git a/app/views/software_records/_form_multi_departments.html.erb b/app/views/software_records/_form_multi_departments.html.erb
new file mode 100644
index 0000000..a291254
--- /dev/null
+++ b/app/views/software_records/_form_multi_departments.html.erb
@@ -0,0 +1,44 @@
+
+<% if current_user.role.to_s == "root_admin" %>
+
+<% else %>
+ <% if @software_record.departments.any? %>
+
+ <% end %>
+<% end %>
+
+
+
+
diff --git a/app/views/software_records/_form_multi_developers.html.erb b/app/views/software_records/_form_multi_developers.html.erb
new file mode 100644
index 0000000..6bb8f30
--- /dev/null
+++ b/app/views/software_records/_form_multi_developers.html.erb
@@ -0,0 +1,43 @@
+
+<% if current_user.role.to_s != "owner" %>
+
+<% else %>
+ <% if @software_record.developers.any? %>
+
+ <% end %>
+<% end %>
+
+
+
diff --git a/app/views/software_records/_form_multi_product_owners.html.erb b/app/views/software_records/_form_multi_product_owners.html.erb
new file mode 100644
index 0000000..7bfec3c
--- /dev/null
+++ b/app/views/software_records/_form_multi_product_owners.html.erb
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
diff --git a/app/views/software_records/_form_multi_tech_leads.html.erb b/app/views/software_records/_form_multi_tech_leads.html.erb
new file mode 100644
index 0000000..09b7c0b
--- /dev/null
+++ b/app/views/software_records/_form_multi_tech_leads.html.erb
@@ -0,0 +1,41 @@
+
+<% if current_user.role.to_s != "owner" %>
+
+<% else %>
+ <% if @software_record.tech_leads.any? %>
+
+ <% end %>
+<% end %>
+
diff --git a/config/initializers/assets.rb b/config/initializers/assets.rb
index ad2ab73..fc33fc3 100644
--- a/config/initializers/assets.rb
+++ b/config/initializers/assets.rb
@@ -14,7 +14,7 @@
# application.js, application.css, and all non-JS/CSS in the app/assets
# folder are already added.
# Rails.application.config.assets.precompile += %w( admin.js admin.css )
-Rails.application.config.assets.precompile += %w( navigation.js )
-Rails.application.config.assets.precompile += %w( filtermanagement.js )
-Rails.application.config.assets.precompile += %w( inputsanitization.js )
-Rails.application.config.assets.precompile += %w( multivalueinputs.js )
+Rails.application.config.assets.precompile += %w[navigation.js]
+Rails.application.config.assets.precompile += %w[filtermanagement.js]
+Rails.application.config.assets.precompile += %w[inputsanitization.js]
+Rails.application.config.assets.precompile += %w[multivalueinputs.js]