1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-24 12:04:20 +00:00
royalnet/templates/challenge1.html

34 lines
1.4 KiB
HTML
Raw Normal View History

2018-02-02 10:46:27 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Challenge 1 - RYG</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css"
integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<link rel="stylesheet" href="{{ url_for('static', filename='royal.css') }}">
</head>
<body>
<div class="container">
<h1>
2018-02-02 13:23:12 +00:00
Royal Challenge
2018-02-02 10:46:27 +00:00
</h1>
<h2>
2018-02-02 13:23:12 +00:00
La Prima Sfida
2018-02-02 10:46:27 +00:00
</h2>
2018-02-02 13:23:12 +00:00
<p>
2018-02-05 09:37:33 +00:00
L'obiettivo di questa settimana sarà di raggiungere {{ (target) | int }}pp totali su osu! Ovvero, di guadagnare <b>{{ (target-starting) | int }}pp</b> in qualsiasi modalità partendo da adesso.
2018-02-02 13:23:12 +00:00
</p>
<p>
<small>
Più che altro è per provare una roba con il database della Royal Games, però sarebbe bello che tutti provassero a fare qualche pp...
</small>
</p>
<div class="progress challenge-bar">
2018-02-05 09:37:33 +00:00
<div class="progress-bar challenge-bar" role="progressbar" style="width: {{ ((result-starting) / (target-starting) * 100) | int }}%">
{{ (result-starting) | int }}pp
2018-02-02 13:23:12 +00:00
</div>
2018-02-02 10:46:27 +00:00
</div>
</div>
</body>
</html>