@(env: String, os: Map[String, Long], browser: Map[String, Long]) @admin_main("Browsers", env, isAuthed = true) {

Browser usage on theguardian.com

Collected from Ophan data covering March 1, 2013 to present.

Warning. These statistics only cover the mobile site.

By operating system

Page views over 10k broken down by operating system version

@os.toList.sortBy{_._2}.reverse.filter { _._2 >= 10000 }.zipWithIndex.map { case (row, index) => }
@{index + 1} @row._1 @row._2.toInt

Browser vendor

Page views over 10k broken down by browser family and version.

@browser.toList.sortBy{_._2}.reverse.filter { _._2 >= 10000 }.zipWithIndex.map { case (row, index) => }
@{index + 1} @row._1 @row._2.toInt
}