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

graphs.html.haml « product_analytics « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c345561e6cef148fbe4b4bc8c5b6130ac26ef4ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- page_title _('Product Analytics')

= render 'links'

%p
  = _('Showing graphs based on events of the last %{timerange} days.') % { timerange: @timerange }


.gl-mb-3
  = render 'graph', graph: @activity_graph

- @graphs.each_slice(2) do |pair|
  .row.append-bottom-10
    - pair.each do |graph|
      .col-md-6{ id: graph[:id] }
        = render 'graph', graph: graph