diff --git a/app/views/main/_announcement.html.haml b/app/views/main/_announcement.html.haml
--- a/app/views/main/_announcement.html.haml
+++ b/app/views/main/_announcement.html.haml
@@ -1,6 +1,8 @@
%li.list-group-item
%strong
= announcement.title
+ - if @current_user.admin?
+ = link_to 'Edit', edit_announcement_path(announcement), class: 'btn btn-xs btn-default'
%small= "(updated #{time_ago_in_words(announcement.updated_at)} ago on #{announcement.updated_at})"
%br