diff --git a/app/views/registrant/contacts/show/_domain.html.erb b/app/views/registrant/contacts/show/_domain.html.erb
new file mode 100644
index 000000000..83b7f49d5
--- /dev/null
+++ b/app/views/registrant/contacts/show/_domain.html.erb
@@ -0,0 +1,6 @@
+
+ <%= link_to domain.name, registrant_domain_path(domain) %> |
+ <%= link_to domain.registrar, registrant_registrar_path(domain.registrar) %> |
+ <%= l domain.valid_to %> |
+ <%= domain.roles.join(", ") %> |
+
\ No newline at end of file
diff --git a/app/views/registrant/contacts/show/_domains.html.erb b/app/views/registrant/contacts/show/_domains.html.erb
index dab0b93cb..e99ff3053 100644
--- a/app/views/registrant/contacts/show/_domains.html.erb
+++ b/app/views/registrant/contacts/show/_domains.html.erb
@@ -43,15 +43,7 @@
- <% domains.each do |domain| %>
-
- <%= link_to domain.name, registrant_domain_path(domain) %> |
- <%= link_to domain.registrar,
- registrant_registrar_path(domain.registrar) %> |
- <%= l domain.valid_to %> |
- <%= domain.roles.join(", ") %> |
-
- <% end %>
+ <%= render partial: 'registrant/contacts/show/domain', collection: domains %>