@(form: Form[_])(implicit ctx: Context) @moreCss = { @cssTag("import.css") } @moreJs = { @embedJs { $("#import_game form").submit(function() { setTimeout(function() { $(this).html(lichess.spinnerHtml); }.bind(this), 50); }); } } @base.layout( title = trans.importGame.txt(), moreCss = moreCss, moreJs = moreJs, openGraph = lila.app.ui.OpenGraph( title = "Paste PGN chess game", url = s"$netBaseUrl${routes.Importer.importGame.url}", description = "When pasting a game PGN, you get a browsable replay, a computer analysis, a game chat and a sharable URL").some) {
@trans.importGameExplanation()