mirror of
https://github.com/minetest/contentdb.git
synced 2025-04-03 00:42:38 +02:00
Improve profile pic styling on user profile page
This commit is contained in:
@ -19,6 +19,17 @@
|
|||||||
<div class="col-sm-6">
|
<div class="col-sm-6">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<h2 class="card-header">{{ user.display_name }}</h2>
|
<h2 class="card-header">{{ user.display_name }}</h2>
|
||||||
|
<div class="card-body row">
|
||||||
|
<div class="col-md-2">
|
||||||
|
{% if user.email %}
|
||||||
|
<a class="btn btn-primary" href="https://en.gravatar.com/">
|
||||||
|
{% endif %}
|
||||||
|
<img class="img-responsive user-photo img-thumbnail img-thumbnail-1" src="{{ (user.email or '') | gravatar }}">
|
||||||
|
{% if user.email %}
|
||||||
|
</a>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<tr>
|
<tr>
|
||||||
<td>Rank:</td>
|
<td>Rank:</td>
|
||||||
@ -53,6 +64,20 @@
|
|||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% if user == current_user %}
|
{% if user == current_user %}
|
||||||
|
<tr>
|
||||||
|
<td>Profile Picture:</td>
|
||||||
|
<td>
|
||||||
|
{% 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 %}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Password:</td>
|
<td>Password:</td>
|
||||||
<td>
|
<td>
|
||||||
@ -66,31 +91,6 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</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>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<p class="card-body">
|
<p class="card-body">
|
||||||
List of your forum topics which do not have a matching package.
|
List of your forum topics which do not have a matching package.
|
||||||
Topics with a strikethrough have beened marked as discarded.
|
Topics with a strikethrough have been marked as discarded.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
{% from "macros/topics.html" import render_topics_table %}
|
{% from "macros/topics.html" import render_topics_table %}
|
||||||
|
Reference in New Issue
Block a user