You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1022 B
25 lines
1022 B
{% extends "layout.html" %}
|
|
|
|
{% block title %}Profile - {{ user.nickname }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="uk-grid" data-uk-grid-margin>
|
|
<div class="uk-width-2-3">
|
|
<h2 class="uk-float-left"><img class="" src="{{ user.avatar }}" /> {{ user.nickname }}</h2>
|
|
</div>
|
|
<div class="uk-width-1-3 uk-text-center">
|
|
</div>
|
|
<!--Main content area -->
|
|
<div class="uk-width-large-2-3 uk-width-medium-1-1 uk-panel">
|
|
<em>This user profile is set to private.</em>
|
|
</div>
|
|
<!-- Side bar -->
|
|
<div class="uk-width-large-1-3 uk-width-medium-1-1 uk-panel uk-panel-box uk-panel-box-secondary">
|
|
<ul class="uk-list uk-list-space uk-list-striped uk-text-center">
|
|
<li>Has <span id='points_total'>0</span> doobs points</li>
|
|
<li>Last seen at <span class='date'> {{ user.last_seen | js_datetime }}</span></li>
|
|
<li>Doob since <span class='date'> {{ user.created | js_datetime }}</span></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|