2018-03-18 19:14:55 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
{{ user.username }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<div class="box box_grey">
|
|
|
|
<h2>{{ user.username }}</h2>
|
|
|
|
|
|
|
|
<table>
|
2018-03-20 04:31:49 +01:00
|
|
|
<tr>
|
|
|
|
<td>Rank:</td>
|
|
|
|
<td>
|
|
|
|
{{ user.rank.getTitle() }}
|
|
|
|
</td>
|
|
|
|
</tr>
|
2018-03-18 19:14:55 +01:00
|
|
|
<tr>
|
|
|
|
<td>Accounts:</td>
|
|
|
|
<td>
|
|
|
|
{% if user.forums_username %}
|
|
|
|
<a href="https://forum.minetest.net/memberlist.php?mode=viewprofile&un={{ user.forums_username }}">
|
|
|
|
Minetest Forum
|
|
|
|
</a>
|
|
|
|
{% elif user == current_user %}
|
|
|
|
<a href="">Link Forums Account</a>
|
|
|
|
{% endif %}
|
2018-03-19 19:08:41 +01:00
|
|
|
|
|
|
|
{% if (user.forums_username and user.github_username) or user == current_user %}
|
|
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
|
2018-03-18 19:14:55 +01:00
|
|
|
{% if user.github_username %}
|
|
|
|
<a href="https://github.com/{{ user.github_username }}">GitHub</a>
|
|
|
|
{% elif user == current_user %}
|
|
|
|
<a href="{{ url_for('github_signin_page') }}">Link Github</a>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if user == current_user %}
|
|
|
|
🌎
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% if user == current_user %}
|
|
|
|
<tr>
|
|
|
|
<td>Email:</td>
|
|
|
|
<td>
|
|
|
|
{{ user.email }} |
|
|
|
|
<a href="">{% if user.email %}change{% else %}add{% endif %}</a>
|
|
|
|
🔒
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Password:</td>
|
|
|
|
<td>
|
|
|
|
<a href="{{ url_for('user.change_password') }}">
|
|
|
|
{% if user.password %}Change password{% else %}Add password{% endif %}
|
|
|
|
</a> 🔒
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endif %}
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
2018-03-21 21:16:21 +01:00
|
|
|
<div class="box box_grey">
|
|
|
|
<h2>Packages</h2>
|
|
|
|
<ul>
|
|
|
|
{% for p in user.packages %}
|
|
|
|
<li><a href="{{ p.getDetailsURL() }}">
|
|
|
|
{{ p.title }} by {{ p.author.display_name }}
|
|
|
|
</a></li>
|
|
|
|
{% else %}
|
|
|
|
<li><i>No packages available</i></ul>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
2018-03-18 19:14:55 +01:00
|
|
|
{% if form %}
|
|
|
|
{% from "macros/forms.html" import render_field, render_submit_field %}
|
|
|
|
<form class="box box_grey" action="" method="POST" class="form" role="form">
|
|
|
|
<h2>Edit Details</h2>
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-6 col-md-5 col-lg-4">
|
|
|
|
{{ form.hidden_tag() }}
|
|
|
|
|
|
|
|
{{ render_field(form.display_name, tabindex=240) }}
|
|
|
|
|
|
|
|
{{ render_submit_field(form.submit, tabindex=280) }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|