diff options
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/layouts/nav/sidebar/_project.html.haml | 4 | ||||
-rw-r--r-- | app/views/projects/cycle_analytics/_overview.html.haml | 8 | ||||
-rw-r--r-- | app/views/projects/cycle_analytics/show.html.haml | 4 |
3 files changed, 8 insertions, 8 deletions
diff --git a/app/views/layouts/nav/sidebar/_project.html.haml b/app/views/layouts/nav/sidebar/_project.html.haml index f17981e501c..c587d0ca053 100644 --- a/app/views/layouts/nav/sidebar/_project.html.haml +++ b/app/views/layouts/nav/sidebar/_project.html.haml @@ -42,8 +42,8 @@ - unless should_display_analytics_pages_in_sidebar - if can?(current_user, :read_cycle_analytics, @project) = nav_link(path: 'cycle_analytics#show') do - = link_to project_cycle_analytics_path(@project), title: _('Cycle Analytics'), class: 'shortcuts-project-cycle-analytics' do - %span= _('Cycle Analytics') + = link_to project_cycle_analytics_path(@project), title: _('Value Stream Analytics'), class: 'shortcuts-project-cycle-analytics' do + %span= _('Value Stream Analytics') = render_if_exists 'layouts/nav/project_insights_link' diff --git a/app/views/projects/cycle_analytics/_overview.html.haml b/app/views/projects/cycle_analytics/_overview.html.haml index ea94b637f89..2ca72b141be 100644 --- a/app/views/projects/cycle_analytics/_overview.html.haml +++ b/app/views/projects/cycle_analytics/_overview.html.haml @@ -4,12 +4,12 @@ .col-md-10.offset-md-1 .row.overview-details .col-md-6.overview-text - %h4 Introducing Cycle Analytics + %h4 Introducing Value Stream Analytics %p - Cycle Analytics gives an overview of how much time it takes to go from idea to production in your project. - To set up CA, you must first define a production environment by setting up your CI and then deploy to production. + Value Stream Analytics (VSA) gives an overview of how much time it takes to go from idea to production in your project. + To set up VSA, you must first define a production environment by setting up your CI and then deploy to production. %p - %a.btn{ href: help_page_path('user/analytics/cycle_analytics.md'), target: '_blank' } Read more + %a.btn{ href: help_page_path('user/analytics/value_stream_analytics.md'), target: '_blank' } Read more .col-md-6.overview-image %span.overview-icon = custom_icon ('icon_cycle_analytics_overview') diff --git a/app/views/projects/cycle_analytics/show.html.haml b/app/views/projects/cycle_analytics/show.html.haml index 8bbe4e66c50..70409774a50 100644 --- a/app/views/projects/cycle_analytics/show.html.haml +++ b/app/views/projects/cycle_analytics/show.html.haml @@ -1,9 +1,9 @@ -- page_title "Cycle Analytics" +- page_title "Value Stream Analytics" #cycle-analytics{ "v-cloak" => "true", data: { request_path: project_cycle_analytics_path(@project) } } - if @cycle_analytics_no_data %banner{ "v-if" => "!isOverviewDialogDismissed", - "documentation-link": help_page_path('user/analytics/cycle_analytics.md'), + "documentation-link": help_page_path('user/analytics/value_stream_analytics.md'), "v-on:dismiss-overview-dialog" => "dismissOverviewDialog()" } = icon("spinner spin", "v-show" => "isLoading") .wrapper{ "v-show" => "!isLoading && !hasError" } |