2018-03-18 19:14:55 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
{{ user.username }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<div class="box box_grey">
|
2018-05-21 23:31:50 +02:00
|
|
|
<h2>{{ user.display_name }}</h2>
|
2018-03-18 19:14:55 +01:00
|
|
|
|
2018-05-21 23:42:02 +02:00
|
|
|
<table class="box-body">
|
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>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
2018-03-21 21:16:21 +01:00
|
|
|
<div class="box box_grey">
|
|
|
|
<h2>Packages</h2>
|
2018-05-21 23:42:02 +02:00
|
|
|
<div class="box-body">
|
|
|
|
<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>
|
|
|
|
{% if user == current_user or user.checkPerm(current_user, "CHANGE_AUTHOR") %}
|
|
|
|
<p><a class="button" href="{{ url_for('create_edit_package_page', author=user.username) }}">
|
|
|
|
Create
|
|
|
|
</a></p>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
2018-03-21 21:16:21 +01:00
|
|
|
</div>
|
|
|
|
|
2018-03-18 19:14:55 +01:00
|
|
|
{% if form %}
|
|
|
|
{% from "macros/forms.html" import render_field, render_submit_field %}
|
2018-05-18 05:06:27 +02:00
|
|
|
<div class="box box_grey">
|
2018-03-18 19:14:55 +01:00
|
|
|
<h2>Edit Details</h2>
|
|
|
|
|
2018-05-21 23:42:02 +02:00
|
|
|
<form action="" method="POST" class="form box-body" role="form">
|
2018-05-18 05:06:27 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-6 col-md-5 col-lg-4">
|
|
|
|
{{ form.hidden_tag() }}
|
2018-03-18 19:14:55 +01:00
|
|
|
|
2018-05-21 23:31:50 +02:00
|
|
|
{% if user.checkPerm(current_user, "CHANGE_DNAME") %}
|
|
|
|
{{ render_field(form.display_name, tabindex=230) }}
|
|
|
|
{% endif %}
|
2018-05-14 01:40:34 +02:00
|
|
|
|
2018-05-18 05:06:27 +02:00
|
|
|
{% if user.checkPerm(current_user, "CHANGE_EMAIL") %}
|
|
|
|
{{ render_field(form.email, tabindex=240) }}
|
2018-05-21 23:46:48 +02:00
|
|
|
<i>We'll send you an email to verify it if changed.</i>
|
2018-05-18 05:06:27 +02:00
|
|
|
{% endif %}
|
2018-03-18 19:14:55 +01:00
|
|
|
|
2018-05-18 05:06:27 +02:00
|
|
|
{% if user.checkPerm(current_user, "CHANGE_RANK") %}
|
|
|
|
{{ render_field(form.rank, tabindex=250) }}
|
|
|
|
{% endif %}
|
2018-03-24 20:37:33 +01:00
|
|
|
|
2018-05-18 05:06:27 +02:00
|
|
|
{{ render_submit_field(form.submit, tabindex=280) }}
|
|
|
|
</div>
|
2018-03-18 19:14:55 +01:00
|
|
|
</div>
|
2018-05-18 05:06:27 +02:00
|
|
|
</form>
|
|
|
|
</div>
|
2018-03-18 19:14:55 +01:00
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|