lila/app/views/coach/index.scala.html

29 lines
524 B
HTML

@(u: User, ui: String)(implicit ctx: Context)
@moreJs = {
@highchartsLatestTag
@jsAt("vendor/multiple-select/multiple-select.js")
@jsAt(s"compiled/lichess.coach${isProd??(".min")}.js")
@embedJs {
$(function() {
LichessCoach(document.getElementById('coach'), {
ui: @Html(ui),
i18n: @jsI18n(),
userId: "@u.id"
});
});
}
}
@moreCss = {
@cssTag("coach.css")
@cssVendorTag("multiple-select/multiple-select.css")
}
@coach.layout(u,
title = s"${u.username} coach",
moreJs = moreJs,
moreCss = moreCss) {
<div id="coach"></div>
}