Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlfredo Sumaran <alfredo@gitlab.com>2016-11-15 23:19:41 +0300
committerAlfredo Sumaran <alfredo@gitlab.com>2016-11-21 21:49:19 +0300
commitf9cfc87c7ddac2393cdb8a150412ec37f2e04c56 (patch)
tree90291d3354672d04d674564bfb829b23127a83b8 /app/views/projects
parent795ce9dc4a980129495f4b874fcf9842daa2b699 (diff)
Move templates to its corresponding component
Diffstat (limited to 'app/views/projects')
-rw-r--r--app/views/projects/cycle_analytics/show.html.haml57
1 files changed, 0 insertions, 57 deletions
diff --git a/app/views/projects/cycle_analytics/show.html.haml b/app/views/projects/cycle_analytics/show.html.haml
index ea3ae13b6d8..a4255aceb2a 100644
--- a/app/views/projects/cycle_analytics/show.html.haml
+++ b/app/views/projects/cycle_analytics/show.html.haml
@@ -93,60 +93,3 @@
%p No results
%template{ "v-if" => "state.items.length && !isLoadingStage && !isEmptyStage" }
%component{ ":is" => "currentStage.component", ":items" => "state.items" }
-
-%script{ type: 'text/x-template', id: 'stage-code-component' }
- %div
- .events-description
- Time spent coding
- %ul
- %li{ "v-for" => "mergeRequest in items" }
- %item-merge-request-component{ ":merge-request" => "mergeRequest" }
-
-%script{ type: 'text/x-template', id: 'stage-test-component' }
- %div
- .events-description
- The time taken to build and test the application
- %ul
- %li{ "v-for" => "build in items" }
- %item-build-component{ ":build" => "build" }
-
-
-%script{ type: 'text/x-template', id: 'stage-review-component' }
- %div
- .events-description
- The time taken to review the code
- %ul
- %li{ "v-for" => "mergeRequest in items" }
- %item-merge-request-component{ ":merge-request" => "mergeRequest" }
-
-%script{ type: 'text/x-template', id: 'stage-staging-component' }
- %div
- .events-description
- The time taken in staging
- %ul
- %li{ "v-for" => "build in items" }
- %item-build-component{ ":build" => "build" }
-
-%script{ type: 'text/x-template', id: 'stage-production-component' }
- %div
- .events-description
- The total time taken from idea to production
- %ul
- %li{ "v-for" => "issue in items" }
- %item-issue-component{ ":issue" => "issue" }
-
-%script{ type: 'text/x-template', id: 'item-merge-request-component' }
- %div
- %p
- %h5
- merge request -
- %a{:href => "mergeRequest.url"}
- {{ mergeRequest.title }}
-
-%script{ type: 'text/x-template', id: 'item-build-component' }
- %div
- %p
- %h5
- build -
- %a{:href => "build.url"}
- {{ build.title }}