2018-11-14 11:16:04 -05:00
|
|
|
- page_title _("Contribution Charts")
|
2015-11-08 13:29:22 -05:00
|
|
|
|
2019-09-03 05:03:35 -04:00
|
|
|
.repo-charts
|
2017-03-02 12:57:01 -05:00
|
|
|
%h4.sub-header
|
2018-02-08 00:55:52 -05:00
|
|
|
= _("Programming languages used in this repository")
|
2014-09-26 13:32:44 -04:00
|
|
|
|
2020-01-03 04:07:33 -05:00
|
|
|
%p
|
|
|
|
= _("Measured in bytes of code. Excludes generated and vendored code.")
|
|
|
|
|
2020-02-12 10:09:37 -05:00
|
|
|
#js-languages-chart{ data: { chart_data: @languages.to_json.html_safe } }
|
2017-03-02 12:57:01 -05:00
|
|
|
|
2019-09-03 05:03:35 -04:00
|
|
|
.repo-charts
|
2017-03-02 12:57:01 -05:00
|
|
|
.sub-header-block.border-top
|
|
|
|
|
|
|
|
.row.tree-ref-header
|
|
|
|
.col-md-6
|
|
|
|
%h4
|
2018-02-08 00:55:52 -05:00
|
|
|
- start_time = capture do
|
|
|
|
#{@commits_graph.start_date.strftime('%b %d')}
|
|
|
|
- end_time = capture do
|
|
|
|
#{@commits_graph.end_date.strftime('%b %d')}
|
2018-06-18 09:29:27 -04:00
|
|
|
= (_("Commit statistics for %{ref} %{start_time} - %{end_time}") % { ref: "<strong>#{h @ref}</strong>", start_time: start_time, end_time: end_time }).html_safe
|
2017-03-02 12:57:01 -05:00
|
|
|
|
|
|
|
.col-md-6
|
|
|
|
.tree-ref-container
|
|
|
|
.tree-ref-holder
|
|
|
|
= render 'shared/ref_switcher', destination: 'graphs_commits'
|
|
|
|
%ul.breadcrumb.repo-breadcrumb
|
|
|
|
= commits_breadcrumbs
|
2014-09-26 13:32:44 -04:00
|
|
|
|
2016-06-15 09:54:31 -04:00
|
|
|
.row
|
|
|
|
.col-md-6
|
2017-03-02 12:57:01 -05:00
|
|
|
%ul.commit-stats
|
2016-06-15 09:54:31 -04:00
|
|
|
%li
|
2018-02-08 00:55:52 -05:00
|
|
|
- total = capture do
|
|
|
|
#{@commits_graph.commits.size}
|
|
|
|
= (_("Total: %{total}") % { total: "<strong>#{total} commits</strong>" }).html_safe
|
2016-06-15 09:54:31 -04:00
|
|
|
%li
|
2018-02-08 00:55:52 -05:00
|
|
|
- average = capture do
|
|
|
|
#{@commits_graph.commit_per_day}
|
|
|
|
= (_("Average per day: %{average}") % { average: "<strong>#{average} commits</strong>" }).html_safe
|
2016-06-15 09:54:31 -04:00
|
|
|
%li
|
2018-02-08 00:55:52 -05:00
|
|
|
- authors = capture do
|
|
|
|
#{@commits_graph.authors}
|
|
|
|
= (_("Authors: %{authors}") % { authors: "<strong>#{authors}</strong>" }).html_safe
|
2016-06-15 09:54:31 -04:00
|
|
|
.col-md-6
|
2019-02-08 11:09:24 -05:00
|
|
|
%p.slead
|
|
|
|
= _("Commits per day of month")
|
2016-06-15 09:54:31 -04:00
|
|
|
%div
|
2020-02-12 10:09:37 -05:00
|
|
|
#js-month-chart{ data: { chart_data: @commits_per_month.to_json.html_safe } }
|
2016-06-15 09:54:31 -04:00
|
|
|
.row
|
|
|
|
.col-md-6
|
|
|
|
.col-md-6
|
2019-02-08 11:09:24 -05:00
|
|
|
%p.slead
|
|
|
|
= _("Commits per weekday")
|
2016-06-15 09:54:31 -04:00
|
|
|
%div
|
2020-02-12 10:09:37 -05:00
|
|
|
#js-weekday-chart{ data: { chart_data: @commits_per_week_days.to_json.html_safe } }
|
2017-03-02 12:57:01 -05:00
|
|
|
.row
|
|
|
|
.col-md-6
|
|
|
|
.col-md-6
|
2019-02-08 11:09:24 -05:00
|
|
|
%p.slead
|
|
|
|
= _("Commits per day hour (UTC)")
|
2017-03-02 12:57:01 -05:00
|
|
|
%div
|
2020-02-12 10:09:37 -05:00
|
|
|
#js-hour-chart{ data: { chart_data: @commits_per_time.to_json.html_safe } }
|