diff --git a/app/views/admin/officials/index.html.erb b/app/views/admin/officials/index.html.erb
index 35f7df6e7..bb2f006ab 100644
--- a/app/views/admin/officials/index.html.erb
+++ b/app/views/admin/officials/index.html.erb
@@ -16,7 +16,7 @@
<% @officials.each do |official| %>
-
- <%= official.name %>
+ <%= link_to official.name, edit_admin_official_path(official) %>
•
<%= t("admin.officials.level_#{official.official_level}") %>
•
diff --git a/app/views/admin/officials/search.html.erb b/app/views/admin/officials/search.html.erb
index 868156a90..a7f60ca8a 100644
--- a/app/views/admin/officials/search.html.erb
+++ b/app/views/admin/officials/search.html.erb
@@ -16,7 +16,7 @@
<% @users.each do |user| %>
-
- <%= user.name %>
+ <%= link_to user.name, edit_admin_official_path(user) %>
•
<%= user.official_position %>