{% extends "base.html" %} {% block title %} {{ user.username }} {% endblock %} {% block content %} {% if not current_user.is_authenticated and user.rank == user.rank.NOT_JOINED and user.forums_username %}
Rank: | {{ user.rank.getTitle() }} |
Accounts: | {% if user.forums_username %} Minetest Forum {% 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 %} GitHub {% elif user == current_user %} Link Github {% endif %} {% if user == current_user %} 🌎 {% endif %} |
Profile Picture: |
{% if user.email %}
Gravatar
{% else %}
Please add an email to your profile. {% endif %} |
Password: | {% if user.password %} Set | Change {% else %} Not set | Set {% endif %} |
List of your forum topics which do not have a matching package. Topics with a strikethrough have been marked as discarded.
{% from "macros/topics.html" import render_topics_table %} {{ render_topics_table(topics_to_add, show_author=False, show_discard=True, current_user=current_user) }}