2021-08-28 00:44:20 +03:00

68 lines
4.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@()(implicit r: Request[_])
<!DOCTYPE html>
<html>
<head>
<title>Soulstorm tournament decider</title>
<link rel='stylesheet' href='@routes.Assets.at("lib/bootstrap/css/bootstrap.min.css")'>
<link rel="stylesheet" media="screen" href="@routes.Assets.at("stylesheets/main.css")">
<link rel="shortcut icon" type="image/png" href="@routes.Assets.at("images/favicon.png")">
<script type='text/javascript' src='@routes.Assets.at("lib/jquery/jquery.min.js")'></script>
<script type='text/javascript' src='@routes.Assets.at("lib/flot/jquery.flot.js")'></script>
<script type='text/javascript' src='@routes.Assets.at("lib/underscore/underscore.js")'></script>
<script type='text/javascript' src='@routes.Assets.at("lib/backbonejs/backbone.js")'></script>
<script type="text/javascript" src="@routes.Assets.at("lib/jquery-cookie/jquery.cookie.js")"></script>
<script type='text/javascript' src='@routes.Assets.at("javascripts/index.js?030721")'></script>
</head>
<body data-ws-url="@routes.HomeController.ws.webSocketURL()">
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner" style="margin: 10px;">
<span id="playerName"></span>
<button onclick="changeNick();" style="margin-left: 10px;" >Change nick</button>
</div>
</div>
<br/>
<br/>
<br/>
<div class ="container">
<div id = "lobbies">
<center>
<button id = "createDecider" class="btn btn-primary">Create decider</button>
<button id = "getAllUsers" class="btn btn-primary">Refresh</button>
</center><br/>
<div id = "lobbiesList"></div>
</div>
<div id = "decider" style="display:none">
<button id = "exit" class="btn btn-primary">Exit</button>
<br/>
<div id = "mapList" class="container"></div>
<div id = "playersStatsList"></div>
<div id="chat">
<br/>
<div id="chatbox">
</div>
<div id = "inputMsg">
<input autocomplete="off" type="text" id="usermsg" />
<button type="submit" id="submitmsg" >Send</button>
</div>
</div>
<div style="clear: both"></div>
<div><i><b>Правила турнира Мясорубка</b><br/>
<p>Выбор карт в БО3 и БО5 осуществляется без лузерпиков, с тремя и пятью десайдерами соответственно. Игроки вычеркивают по очереди карты из маппула, пока их не останется 3 (для БО3) или 5 (для БО5). На этих картах и проходят все матчи встречи. Затем игроки вычеркивают выбранные карты, пока не останется только одна, на которой и играется первый матч встречи. Тот, кто первым начал вычеркивать из всего маппула, уступает оппоненту право вычеркивания первой карты из оставшихся карт-десайдеров. Во втором и последующем матчах проигравший выбирает карту из числа выбранных 3 (5) десайдеров.</p>
<p>You and your opponent disclude maps one-by-one, untill you'll get 3 (or five, for finals). By doing so, you decline 10 maps and won't play on them in the round. After that, you and your opponent disclude one map, to play your first match on the last map. Two left maps you and your opponent use as looser picks in the second and the third matches.</p>
</i>
</div>
</div>
</div>
</body>
</html>