31 lines
868 B
Plaintext
Raw Normal View History

2017-07-07 12:10:27 +02:00
component Statistics(pieCharts ...*arn.PieChart)
2017-07-07 12:52:24 +02:00
h1.page-title Statistics
2017-07-07 02:07:34 +02:00
2017-07-07 10:57:48 +02:00
StatisticsHeader
2017-07-07 13:33:31 +02:00
.statistics
.widgets
each pie in pieCharts
.widget
h3.widget-title= pie.Title
PieChart(pie.Slices)
.footer
2017-07-07 13:34:43 +02:00
p Data is collected for statistical purposes only. We respect user privacy and we will never display or sell critical data to 3rd party services.
2017-07-07 02:07:34 +02:00
2017-07-07 10:57:48 +02:00
component StatisticsHeader
2017-07-22 15:04:54 +02:00
.tabs
a.tab.action(href="/statistics", data-action="diff", data-trigger="click")
2017-07-07 10:57:48 +02:00
Icon("user")
2017-07-19 18:23:53 +02:00
span.tab-text Users
2017-07-07 10:57:48 +02:00
2017-07-22 15:04:54 +02:00
a.tab.action(href="/statistics/anime", data-action="diff", data-trigger="click")
2017-07-07 10:57:48 +02:00
Icon("tv")
2017-07-19 18:23:53 +02:00
span.tab-text Anime
2017-07-07 10:57:48 +02:00
2017-07-07 12:10:27 +02:00
component PieChart(slices []*arn.PieChartSlice)
2017-07-07 03:22:29 +02:00
svg.pie-chart(viewBox="-1.1 -1.1 2.2 2.2")
2017-07-07 02:37:43 +02:00
each slice in slices
g
title= slice.Title
path.slice(d=utils.SVGSlicePath(slice.From, slice.To), fill=slice.Color)