mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 00:28:31 -05:00
121 lines
3.9 KiB
Text
121 lines
3.9 KiB
Text
extends /templates/base
|
|
|
|
block content
|
|
|
|
//- NOTE: do not localize / i18n
|
|
|
|
if me.isAdmin()
|
|
.container-fluid
|
|
.row
|
|
.col-md-5.big-stat.active-classes
|
|
if activeClasses.length > 0
|
|
div.description 30-day Active Classes
|
|
div.count= activeClasses[0].groups[activeClasses[0].groups.length - 1]
|
|
.col-md-5.big-stat.recurring-revenue
|
|
if revenue.length > 0
|
|
div.description 30-day Monthly Recurring Revenue
|
|
div.count $#{Math.round((revenue[0].groups[revenue[0].groups.length - 1]) / 100)}
|
|
.col-md-5.big-stat.active-users
|
|
if activeUsers.length > 0
|
|
div.description 30-day Active Users
|
|
div.count= activeUsers[0].monthlyCount
|
|
|
|
h3 KPI 60 days
|
|
.kpi-recent-chart.line-chart-container
|
|
|
|
h3 KPI 300 days
|
|
.kpi-chart.line-chart-container
|
|
|
|
h3 Active Classes 90 days
|
|
.small Active class: 12+ students in a classroom, with 6+ who played in last 30 days.
|
|
.small Paid student: user.coursePrepaidID set and prepaid.properties.trialRequestID NOT set
|
|
.small Trial student: user.coursePrepaidID set and prepaid.properties.trialRequestID set
|
|
.small Paid class: at least one paid student in the classroom
|
|
.small Trial class: not paid, at least one trial student in classroom
|
|
.small Free class: not paid, not trial
|
|
.active-classes-chart.line-chart-container
|
|
|
|
h3 Recurring Revenue 90 days
|
|
.recurring-revenue-chart.line-chart-container
|
|
|
|
h3 Active Users 90 days
|
|
.active-users-chart.line-chart-container
|
|
|
|
h3 Furthest Course
|
|
.small Teacher: owner of a course instance
|
|
.small Student: member of a course instance (assigned to course)
|
|
.small For course instances created in last #{view.furthestCourseDayRange} days, not Single Player, hourOfCode != true
|
|
.small Counts are not summed. I.e. a student or teacher only contributes to the count of one course.
|
|
if view.teacherCourseDistribution
|
|
table.table.table-striped.table-condensed
|
|
tr
|
|
th Course
|
|
th Teachers
|
|
th Students
|
|
th Avg students per teacher
|
|
each count, courseIndex in view.teacherCourseDistribution
|
|
tr
|
|
td= view.courses.models[courseIndex].get('name')
|
|
td= count
|
|
td= view.studentCourseDistribution[courseIndex] || 0
|
|
td= Math.round((view.studentCourseDistribution[courseIndex] || 0) / count)
|
|
else
|
|
div Loading ...
|
|
|
|
h3 School Counts
|
|
.small Only including schools with #{view.minSchoolCount}+ counts
|
|
if view.schoolCounts
|
|
table.table.table-striped.table-condensed
|
|
tr
|
|
th
|
|
th School Name
|
|
th User Count
|
|
each val, i in view.schoolCounts
|
|
tr
|
|
td= i + 1
|
|
td= val.schoolName
|
|
td= val.count
|
|
else
|
|
div Loading ...
|
|
|
|
h1 Active Classes
|
|
table.table.table-striped.table-condensed
|
|
tr
|
|
th Day
|
|
for group in activeClassGroups
|
|
th= group.replace('Active classes', '')
|
|
each activeClass in activeClasses
|
|
tr
|
|
td= activeClass.day
|
|
each val in activeClass.groups
|
|
td= val
|
|
|
|
h1 Recurring Revenue
|
|
table.table.table-striped.table-condensed
|
|
tr
|
|
th Day
|
|
for group in revenueGroups
|
|
th= group.replace('DRR ', '')
|
|
each entry in revenue
|
|
tr
|
|
td= entry.day
|
|
each val in entry.groups
|
|
td $#{(val / 100).toFixed(2)}
|
|
|
|
h1 Active Users
|
|
table.table.table-striped.table-condensed
|
|
tr
|
|
th Day
|
|
th Daily Actives
|
|
th Monthly Actives
|
|
th DAUs / MAUs
|
|
each activeUser in activeUsers
|
|
tr
|
|
td= activeUser.day
|
|
td= activeUser.dailyCount
|
|
if activeUser.monthlyCount
|
|
td= activeUser.monthlyCount
|
|
td #{(activeUser.dailyCount / activeUser.monthlyCount * 100).toFixed(2)}%
|
|
else
|
|
td
|
|
td
|