diff --git a/app/views/admin/hosts/pending.html.erb b/app/views/admin/hosts/pending.html.erb
index 77365e1..9eef064 100644
--- a/app/views/admin/hosts/pending.html.erb
+++ b/app/views/admin/hosts/pending.html.erb
@@ -1,24 +1,29 @@
-
Pending Clients
+
+ Pending Clients
+
+
<% if @hosts.empty? %>
There are no clients waiting for configuration
<% else %>
-
-
-
-
- Name |
- FQDN |
- User |
- Port |
- Created At |
- Approved By |
-
-
+
+
+
+
+
+ Name |
+ FQDN |
+ User |
+ Port |
+ Created At |
+ Approved By |
+
+
-
- <%= render partial: 'host', collection: @hosts %>
-
-
+
+ <%= render partial: 'host', collection: @hosts %>
+
+
+
<% end %>
diff --git a/app/views/shared/_admin.html.erb b/app/views/shared/_admin.html.erb
index 18be359..271e4b2 100644
--- a/app/views/shared/_admin.html.erb
+++ b/app/views/shared/_admin.html.erb
@@ -1,65 +1,66 @@
<%= content_tag(:li, active_class(admin_path)) do %>
<%= link_to 'Admin', admin_path %>
<% end %>
- <%= content_tag(:li, active_class(admin_clients_path)) do %>
- <%= link_to 'Clients', admin_clients_path %>
- <% end %>
<%= content_tag(:li,
{ class: ['dropdown',
- active_class([obsolete_admin_clients_path,
+ active_class([ admin_clients_path,
+ obsolete_admin_clients_path,
unverified_admin_hosts_path,
pending_admin_hosts_path,
rejected_admin_hosts_path])[:class]].join(' ')}) do %>
- Inactive Clients
+ Clients
<%#= content_tag(:li, active_class(unverified_admin_hosts_path, true)) do %>
<%#= link_to 'Unverified Clients', unverified_admin_hosts_path %>
<% end %>
<%= content_tag(:li, { class: "dropdown #{active_class(admin_users_path)[:class]}" }) do %>
Users
<% end %>
<%= content_tag(:li, active_class(admin_faqs_path)) do %>
<%= link_to 'FAQ', admin_faqs_path %>
<% end %>
<%= content_tag(:li, active_class(admin_pools_path)) do %>
<%= link_to 'Pools', admin_pools_path %>
<% end %>
<%= content_tag(:li, active_class(admin_settings_path)) do %>
<%= link_to 'Settings', admin_settings_path %>
<% end %>