diff options
-rw-r--r-- | app/views/workflows/_action_menu.html.erb | 1 | ||||
-rw-r--r-- | app/views/workflows/copy.html.erb | 4 | ||||
-rw-r--r-- | app/views/workflows/index.html.erb | 4 |
3 files changed, 2 insertions, 7 deletions
diff --git a/app/views/workflows/_action_menu.html.erb b/app/views/workflows/_action_menu.html.erb index 577281128..6961b2776 100644 --- a/app/views/workflows/_action_menu.html.erb +++ b/app/views/workflows/_action_menu.html.erb @@ -1,5 +1,4 @@ <div class="contextual"> -<%= link_to l(:button_edit), {:action => 'edit'}, :class => 'icon icon-edit' %> <%= link_to l(:button_copy), {:action => 'copy'}, :class => 'icon icon-copy' %> <%= link_to l(:field_summary), {:action => 'index'}, :class => 'icon icon-summary' %> </div> diff --git a/app/views/workflows/copy.html.erb b/app/views/workflows/copy.html.erb index 07001817a..62334c962 100644 --- a/app/views/workflows/copy.html.erb +++ b/app/views/workflows/copy.html.erb @@ -1,6 +1,4 @@ -<%= render :partial => 'action_menu' %> - -<h2><%=l(:label_workflow)%></h2> +<h2><%= link_to l(:label_workflow), workflows_edit_path %> » <%=l(:button_copy)%></h2> <%= form_tag({}, :id => 'workflow_copy_form') do %> <fieldset class="tabular box"> diff --git a/app/views/workflows/index.html.erb b/app/views/workflows/index.html.erb index f05386c9b..9ddb71b10 100644 --- a/app/views/workflows/index.html.erb +++ b/app/views/workflows/index.html.erb @@ -1,6 +1,4 @@ -<%= render :partial => 'action_menu' %> - -<h2><%=l(:label_workflow)%></h2> +<h2><%= link_to l(:label_workflow), workflows_edit_path %> » <%=l(:field_summary)%></h2> <% if @workflow_counts.empty? %> <p class="nodata"><%= l(:label_no_data) %></p> |