2018-06-04 20:54:12 +00:00
|
|
|
<style>
|
|
|
|
@font-face {
|
|
|
|
font-family: "BeaufortLoL";
|
2018-06-13 22:19:33 +00:00
|
|
|
src: url("{{ url_for('static', filename='beaufortlol.woff') }}") format('woff');
|
2018-06-04 20:54:12 +00:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<div class="game-panel">
|
|
|
|
<div class="game-grid lol">
|
|
|
|
<div class="player">
|
2018-06-13 21:32:26 +00:00
|
|
|
<img src="http://avatar.leagueoflegends.com/EUW1/{{ record.summoner_name }}.png" class="player-image">
|
|
|
|
<span class="player-name">{{ record.summoner_name }}</span>
|
2018-06-04 20:54:12 +00:00
|
|
|
</div>
|
2018-06-05 08:34:59 +00:00
|
|
|
<div class="game-title level">
|
2018-06-04 20:54:12 +00:00
|
|
|
LIVELLO
|
|
|
|
</div>
|
2018-06-05 08:34:59 +00:00
|
|
|
<div class="game-score level">
|
2018-06-13 21:32:26 +00:00
|
|
|
<span>{{ record.level }}</span>
|
2018-06-04 20:54:12 +00:00
|
|
|
</div>
|
2018-10-01 15:46:06 +00:00
|
|
|
<div class="game-title mastery">
|
|
|
|
MAIN
|
|
|
|
</div>
|
|
|
|
<div class="game-score mastery">
|
|
|
|
<img src="{{ record.highest_mastery_champ_image() }}" title="{{ record.highest_mastery_champ_name() }}" class="rank">
|
|
|
|
</div>
|
2018-06-05 08:34:59 +00:00
|
|
|
<div class="game-title soloq">
|
2018-06-04 20:54:12 +00:00
|
|
|
SOLO/DUO
|
|
|
|
</div>
|
2018-06-05 08:34:59 +00:00
|
|
|
<div class="game-score soloq">
|
2018-06-13 21:32:26 +00:00
|
|
|
{% if record.solo_division is none %}
|
2018-06-05 10:31:11 +00:00
|
|
|
<img src="{{ url_for('static', filename='lol-rank-icons/provisional.png') }}" title="Non classificato" class="rank">
|
2018-06-04 20:54:12 +00:00
|
|
|
{% else %}
|
2018-06-13 21:32:26 +00:00
|
|
|
<img src="{{ url_for('static', filename='lol-rank-icons/' + record.solo_division.name|lower + "_" + record.solo_rank.name|lower + ".png") }}" class="rank" title="{{ record.solo_division.name|capitalize }} {{ record.solo_rank.name }}">
|
2018-06-04 20:54:12 +00:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
2018-06-05 08:34:59 +00:00
|
|
|
<div class="game-title flexq">
|
2018-06-04 20:54:12 +00:00
|
|
|
FLEX
|
|
|
|
</div>
|
2018-06-05 08:34:59 +00:00
|
|
|
<div class="game-score flexq">
|
2018-06-13 21:32:26 +00:00
|
|
|
{% if record.flex_division is none %}
|
2018-06-05 10:31:11 +00:00
|
|
|
<img src="{{ url_for('static', filename='lol-rank-icons/provisional.png') }}" title="Non classificato" class="rank">
|
2018-06-04 20:54:12 +00:00
|
|
|
{% else %}
|
2018-06-13 21:32:26 +00:00
|
|
|
<img src="{{ url_for('static', filename='lol-rank-icons/' + record.flex_division.name|lower + "_" + record.flex_rank.name|lower + ".png") }}" class="rank" title="{{ record.flex_division.name|capitalize }} {{ record.flex_rank.name }}">
|
2018-06-04 20:54:12 +00:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
2018-06-05 08:34:59 +00:00
|
|
|
<div class="game-title twtrq">
|
2018-06-04 20:54:12 +00:00
|
|
|
3V3
|
|
|
|
</div>
|
2018-06-05 08:34:59 +00:00
|
|
|
<div class="game-score twtrq">
|
2018-06-13 21:32:26 +00:00
|
|
|
{% if record.twtr_division is none %}
|
2018-06-05 10:31:11 +00:00
|
|
|
<img src="{{ url_for('static', filename='lol-rank-icons/provisional.png') }}" title="Non classificato" class="rank">
|
2018-06-04 20:54:12 +00:00
|
|
|
{% else %}
|
2018-06-13 21:32:26 +00:00
|
|
|
<img src="{{ url_for('static', filename='lol-rank-icons/' + record.twtr_division.name|lower + "_" + record.twtr_rank.name|lower + ".png") }}" class="rank" title="{{ record.twtr_division.name|capitalize }} {{ record.twtr_rank.name }}">
|
2018-06-04 20:54:12 +00:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-07-25 19:10:43 +00:00
|
|
|
</div>
|