40 lines
1.4 KiB
HTML
40 lines
1.4 KiB
HTML
{% load bloonsa_game_tags %}
|
|
{% load static %}
|
|
|
|
<link rel="stylesheet" type="text/css" media="screen" href="{% static 'bloonsa_game/css/profilebox.css' %}"/>
|
|
|
|
<div id="profile-box">
|
|
<div id="avatar-box">
|
|
<img id="avatar" src="{{ user.player.avatar.url }}">
|
|
</div>
|
|
|
|
<div id="profile-user">
|
|
<div id="profile-username">{{ user }}</div>
|
|
<div id="profile-plays">
|
|
<object data="{% static 'bloonsa_game/img/levelinfo/plays.svg' %}"
|
|
class="level-plays-img filter-grey"
|
|
id="profile-plays-img"
|
|
type="image/svg+xml"></object>
|
|
<span id="profile-plays-number">{{ user.player.bloonsa_levels_played_count }}</span>
|
|
<span id="profile-plays-separator"> / </span>
|
|
<span id="profile-plays-max">{{ total_levels }}</span>
|
|
</div>
|
|
<div id="profile-clears">
|
|
<object data="{% static 'bloonsa_game/img/levelinfo/wins.svg' %}"
|
|
class="level-wins-img filter-orange"
|
|
id="profile-clears-img"
|
|
type="image/svg+xml"></object>
|
|
<span id="profile-clears-number">{{ user.player.bloonsa_levels_beaten_count }}</span>
|
|
<span id="profile-clears-separator"> / </span>
|
|
<span id="profile-clears-max">{{ total_levels }}</span>
|
|
</div>
|
|
|
|
</div>
|
|
<div id="profile-buttons">
|
|
<button id="profile-settings-button">settings</button>
|
|
<a href="/users/logout">
|
|
<button id="profile-logout-button">logout</button>
|
|
</a>
|
|
</div>
|
|
|
|
</div> |