2018-03-18 19:14:55 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
{{ user.username }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2018-05-29 19:16:05 +02:00
|
|
|
{% if not current_user.is_authenticated and user.rank == user.rank.NOT_JOINED and user.forums_username %}
|
2018-12-22 13:36:49 +01:00
|
|
|
<div class="alert alert-info alert alert-info">
|
|
|
|
<a class="float-right btn btn-default btn-sm"
|
|
|
|
href="{{ url_for('user_claim_page', username=user.forums_username) }}">Claim</a>
|
2018-05-29 19:16:05 +02:00
|
|
|
|
2018-12-22 13:36:49 +01:00
|
|
|
Is this you? Claim your account now!
|
2018-05-29 19:16:05 +02:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
2018-12-22 13:36:49 +01:00
|
|
|
<div class="row mb-3">
|
|
|
|
<div class="col-sm-6">
|
|
|
|
<div class="card">
|
|
|
|
<h2 class="card-header">{{ user.display_name }}</h2>
|
|
|
|
<table class="table">
|
|
|
|
<tr>
|
|
|
|
<td>Rank:</td>
|
|
|
|
<td>
|
|
|
|
{{ user.rank.getTitle() }}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<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 %}
|
|
|
|
No forum account
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if (user.forums_username and user.github_username) or user == current_user %}
|
|
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% 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>
|
2018-03-18 19:14:55 +01:00
|
|
|
{% if user == current_user %}
|
2018-12-22 13:36:49 +01:00
|
|
|
<tr>
|
|
|
|
<td>Password:</td>
|
|
|
|
<td>
|
|
|
|
{% if user.password %}
|
|
|
|
Set | <a href="{{ url_for('user.change_password') }}">Change</a>
|
|
|
|
{% else %}
|
|
|
|
Not set | <a href="{{ url_for('set_password_page') }}">Set</a>
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
</tr>
|
2018-03-18 19:14:55 +01:00
|
|
|
{% endif %}
|
2018-12-22 13:36:49 +01:00
|
|
|
</table>
|
|
|
|
</div>
|
2018-12-22 21:13:43 +01:00
|
|
|
|
|
|
|
<div class="row mt-4">
|
|
|
|
<div class="col-md-2">
|
|
|
|
<img class="img-responsive user-photo img-thumbnail img-thumbnail-1" src="{{ (user.email or '') | gravatar }}">
|
|
|
|
</div>
|
|
|
|
<div class="col">
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-header">
|
|
|
|
Profile Picture
|
|
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
|
|
<p>ContentDB uses Gravatar for profile pictures</p>
|
|
|
|
{% if user == current_user %}
|
|
|
|
{% if user.email %}
|
|
|
|
<a class="btn btn-primary" href="https://en.gravatar.com/">
|
|
|
|
Gravatar
|
|
|
|
</a>
|
|
|
|
{% else %}
|
|
|
|
<p>
|
|
|
|
Please add an email to your profile.
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-12-22 13:36:49 +01:00
|
|
|
</div>
|
2018-03-18 19:14:55 +01:00
|
|
|
|
|
|
|
{% if form %}
|
|
|
|
{% from "macros/forms.html" import render_field, render_submit_field %}
|
2018-12-22 13:36:49 +01:00
|
|
|
<div class="col-sm-6">
|
|
|
|
<div class="card">
|
2018-12-22 21:13:43 +01:00
|
|
|
<div class="card-header">Edit Details</div>
|
2018-12-22 13:36:49 +01:00
|
|
|
<div class="card-body">
|
|
|
|
<form action="" method="POST" class="form box-body" role="form">
|
2018-05-18 05:06:27 +02:00
|
|
|
{{ 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) }}
|
2018-12-22 13:36:49 +01:00
|
|
|
</form>
|
2018-03-18 19:14:55 +01:00
|
|
|
</div>
|
2018-12-22 13:36:49 +01:00
|
|
|
</div>
|
2018-05-18 05:06:27 +02:00
|
|
|
</div>
|
2018-03-18 19:14:55 +01:00
|
|
|
{% endif %}
|
2018-12-22 13:36:49 +01:00
|
|
|
</div>
|
2018-05-29 23:58:46 +02:00
|
|
|
|
|
|
|
{% from "macros/packagegridtile.html" import render_pkggrid %}
|
|
|
|
{{ render_pkggrid(packages, show_author=False) }}
|
|
|
|
|
2018-06-02 19:22:57 +02:00
|
|
|
{% if topics_to_add %}
|
2018-12-22 13:36:49 +01:00
|
|
|
<div class="card mt-3">
|
|
|
|
<h2 class="card-header">Unadded Packages</h2>
|
2018-06-02 19:22:57 +02:00
|
|
|
|
2018-12-22 13:36:49 +01:00
|
|
|
<p class="card-body">
|
|
|
|
List of your forum topics which do not have a matching package.
|
2018-12-25 18:51:29 +01:00
|
|
|
Topics with a strikethrough have beened marked as discarded.
|
2018-12-22 13:36:49 +01:00
|
|
|
</p>
|
2018-06-02 20:41:13 +02:00
|
|
|
|
2018-12-22 13:36:49 +01:00
|
|
|
{% from "macros/topics.html" import render_topics_table %}
|
2018-12-25 18:51:29 +01:00
|
|
|
{{ render_topics_table(topics_to_add, show_author=False, show_discard=True, current_user=current_user) }}
|
2018-06-02 19:22:57 +02:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
2018-03-18 19:14:55 +01:00
|
|
|
{% endblock %}
|
2018-12-25 18:51:29 +01:00
|
|
|
|
|
|
|
|
|
|
|
{% block scriptextra %}
|
|
|
|
<script>
|
|
|
|
var csrf_token = "{{ csrf_token() }}";
|
|
|
|
</script>
|
|
|
|
<script src="/static/topic_discard.js"></script>
|
|
|
|
{% endblock %}
|