diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/views/account/show.rhtml | 2 | ||||
-rw-r--r-- | app/views/versions/show.rhtml | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/app/views/account/show.rhtml b/app/views/account/show.rhtml index 1ddabbaa5..134c587d0 100644 --- a/app/views/account/show.rhtml +++ b/app/views/account/show.rhtml @@ -29,6 +29,7 @@ <% end %> </ul> <% end %> +<%= call_hook :view_account_left_bottom, :user => @user %> </div> <div class="splitcontentright"> @@ -64,6 +65,7 @@ <%= auto_discovery_link_tag(:atom, :controller => 'projects', :action => 'activity', :user_id => @user, :format => :atom, :key => User.current.rss_key) %> <% end %> <% end %> +<%= call_hook :view_account_right_bottom, :user => @user %> </div> <% html_title @user.name %> diff --git a/app/views/versions/show.rhtml b/app/views/versions/show.rhtml index 7e5264562..914bbcc1a 100644 --- a/app/views/versions/show.rhtml +++ b/app/views/versions/show.rhtml @@ -1,5 +1,6 @@ <div class="contextual"> <%= link_to_if_authorized l(:button_edit), {:controller => 'versions', :action => 'edit', :id => @version}, :class => 'icon icon-edit' %> +<%= call_hook(:view_versions_show_contextual, { :version => @version, :project => @project }) %> </div> <h2><%= h(@version.name) %></h2> |