18 lines
469 B
HTML
18 lines
469 B
HTML
{% extends "profile_base.html" %}
|
|
{% load minecraft %}
|
|
{%block title%}{{user}}{%endblock%}
|
|
|
|
{% block sectiontitle %}{{user}}{%endblock%}
|
|
|
|
{%block content %}
|
|
<div class="item">
|
|
{% avatar user %}
|
|
<a href="{%url profiles.views.edit %}">Edit profile</a>
|
|
<a href="{%url profiles.views.invites %}">Invites</a>
|
|
<ul>
|
|
<li>Member Since: {{user.date_joined|date:"SHORT_DATE_FORMAT"}}</li>
|
|
<li>Last seen: {{user.last_login|date:"SHORT_DATE_FORMAT"}}</li>
|
|
</ul>
|
|
</div>
|
|
{%endblock%}
|