aboutsummaryrefslogtreecommitdiff
path: root/app/templates/users/user_profile_page.html
blob: 3dcb3695efc0a332a272f30477f916f1756cb755 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{% 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 %}
<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>

	Is this you? Claim your account now!
</div>
{% endif %}

<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 %}
							&#x1f30e;
						{% endif %}
					</td>
				</tr>
				{% if user == current_user %}
					<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>
				{% endif %}
			</table>
		</div>

		<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>
	</div>

{% if form %}
	{% from "macros/forms.html" import render_field, render_submit_field %}
	<div class="col-sm-6">
		<div class="card">
			<div class="card-header">Edit Details</div>
			<div class="card-body">
				<form action="" method="POST" class="form box-body" role="form">
					{{ form.hidden_tag() }}

					{% if user.checkPerm(current_user, "CHANGE_DNAME") %}
						{{ render_field(form.display_name, tabindex=230) }}
					{% endif %}

					{% if user.checkPerm(current_user, "CHANGE_EMAIL") %}
						{{ render_field(form.email, tabindex=240) }}
						<i>We'll send you an email to verify it if changed.</i>
					{% endif %}

					{% if user.checkPerm(current_user, "CHANGE_RANK") %}
						{{ render_field(form.rank, tabindex=250) }}
					{% endif %}

					{{ render_submit_field(form.submit, tabindex=280) }}
				</form>
			</div>
		</div>
	</div>
{% endif %}
</div>

{% from "macros/packagegridtile.html" import render_pkggrid %}
{{ render_pkggrid(packages, show_author=False) }}

{% if topics_to_add %}
	<div class="card mt-3">
		<h2 class="card-header">Unadded Packages</h2>

		<p class="card-body">
			List of your forum topics which do not have a matching package.
			Topics with a strikethrough have beened marked as discarded.
		</p>

		{% from "macros/topics.html" import render_topics_table %}
		{{ render_topics_table(topics_to_add, show_author=False, show_discard=True, current_user=current_user) }}
	</div>
{% endif %}

{% endblock %}


{% block scriptextra %}
	<script>
		var csrf_token = "{{ csrf_token() }}";
	</script>
	<script src="/static/topic_discard.js"></script>
{% endblock %}